ScriptIntrinsicBLAS.STRSM 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.
STRSM résout l’une des équations de matrice op(A)X := alphaB ou Xop(A) := alphaB op(A) est l’un des op(A) = A ou op(A) = A**T
[Android.Runtime.Register("STRSM", "(IIIIFLandroid/renderscript/Allocation;Landroid/renderscript/Allocation;)V", "", ApiSince=23)]
public void STRSM(int Side, int Uplo, int TransA, int Diag, float alpha, Android.Renderscripts.Allocation? A, Android.Renderscripts.Allocation? B);
[<Android.Runtime.Register("STRSM", "(IIIIFLandroid/renderscript/Allocation;Landroid/renderscript/Allocation;)V", "", ApiSince=23)>]
member this.STRSM : int * int * int * int * single * Android.Renderscripts.Allocation * Android.Renderscripts.Allocation -> unit
Paramètres
- Side
- Int32
Spécifie si la matrice symétrique A apparaît à gauche ou à droite.
- Uplo
- Int32
Spécifie si la matrice A est triangulaire supérieure ou inférieure.
- TransA
- Int32
Type de transposer appliqué à la matrice A.
- Diag
- Int32
Spécifie si A est ou non une unité triangulaire.
- alpha
- Single
Alpha scalaire.
L’allocation d’entrée contient la matrice A, type Element#F32d’éléments pris en charge.
L’allocation d’entrée contient la matrice B, type Element#F32d’éléments pris en charge.
- Attributs
Remarques
STRSM résout l’une des équations de matrice op(A)*X := alpha*B ou X*op(A) := alpha*B op(A) est l’un des op(A) = A ou op(A) = A**T
Détails : http://www.netlib.org/lapack/explore-html/d2/d8b/strsm_8f.html
Les parties de cette page sont des modifications basées sur le travail créé et partagé par Android Open Source et utilisées en fonction des termes décrits dans la Creative Commons 2.5 Attribution License.