ScriptIntrinsicBLAS.DSPR2 Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
DSPR2 effectue l’opération de classement symétrique 2 A := alphaxyT + alphay xT + A
[Android.Runtime.Register("DSPR2", "(IDLandroid/renderscript/Allocation;ILandroid/renderscript/Allocation;ILandroid/renderscript/Allocation;)V", "", ApiSince=23)]
public void DSPR2 (int Uplo, double alpha, Android.Renderscripts.Allocation? X, int incX, Android.Renderscripts.Allocation? Y, int incY, Android.Renderscripts.Allocation? Ap);
[<Android.Runtime.Register("DSPR2", "(IDLandroid/renderscript/Allocation;ILandroid/renderscript/Allocation;ILandroid/renderscript/Allocation;)V", "", ApiSince=23)>]
member this.DSPR2 : int * double * Android.Renderscripts.Allocation * int * Android.Renderscripts.Allocation * int * Android.Renderscripts.Allocation -> unit
Paramètres
- Uplo
- Int32
Spécifie si la partie triangulaire supérieure ou inférieure doit être fournie sous forme emballée.
- alpha
- Double
Alpha scalaire.
L’allocation d’entrée contient le vecteur x, le type Element#F64
d’éléments pris en charge.
- incX
- Int32
L’incrément pour les éléments du vecteur x doit être supérieur à zéro.
L’allocation d’entrée contient le vecteur y, le type Element#F64
d’éléments pris en charge.
- incY
- Int32
L’incrément pour les éléments du vecteur y doit être supérieur à zéro.
- Ap
- Allocation
L’allocation d’entrée contient la matrice A, type Element#F64
d’éléments pris en charge.
- Attributs
Remarques
DSPR2 effectue l’opération de classement symétrique 2 A := alpha*x*y**T + alpha*y*x**T + A
Détails : http://www.netlib.org/lapack/explore-html/dd/d9e/dspr2_8f.html
Remarque : Pour une matrice N*N, l’allocation d’entrée doit être une allocation 1D de taille dimX = N*(N+1)/2, la sous-routine suivante peut être un exemple montrant comment convertir une matrice trianglar supérieure 'a' en matrice empaquetée 'b'. k = 0 pour i dans la plage(0, n) : pour j in range(i, n) : b[k++] = a[i, j]
Les parties de cette page sont des modifications basées sur le travail créé et partagé par le projet Android Open Source et utilisés en fonction des termes décrits dans la licence d’attribution Creative Commons 2.5.