Langue

ScriptIntrinsicBLAS.SSYR2 Méthode

Définition

SSYR2 effectue l’opération symétrique de classement 2 A := alphaxyT + alphay xT + A

[Android.Runtime.Register("SSYR2", "(IFLandroid/renderscript/Allocation;ILandroid/renderscript/Allocation;ILandroid/renderscript/Allocation;)V", "", ApiSince=23)]
public void SSYR2(int Uplo, float alpha, Android.Renderscripts.Allocation? X, int incX, Android.Renderscripts.Allocation? Y, int incY, Android.Renderscripts.Allocation? A);
[<Android.Runtime.Register("SSYR2", "(IFLandroid/renderscript/Allocation;ILandroid/renderscript/Allocation;ILandroid/renderscript/Allocation;)V", "", ApiSince=23)>]
member this.SSYR2 : int * single * 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 référencée.

alpha
Single

Alpha scalaire.

X
Allocation

L’allocation d’entrée contient le vecteur x, le type Element#F32d’éléments pris en charge.

incX
Int32

L’incrément pour les éléments du vecteur x doit être supérieur à zéro.

Y
Allocation

L’allocation d’entrée contient le vecteur y, le type Element#F32d’éléments pris en charge.

incY
Int32

L’incrément pour les éléments du vecteur y doit être supérieur à zéro.

A
Allocation

L’allocation d’entrée contient la matrice A, type Element#F32d’éléments pris en charge.

Attributs

Remarques

SSYR2 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/db/d99/ssyr2_8f.html

Documentation Java pour android.renderscript.ScriptIntrinsicBLAS.SSYR2(int, float, android.renderscript.Allocation, int, android.renderscript.Allocation, int, android.renderscript.Allocation).

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.

S’applique à