ScriptIntrinsicBLAS.CHERK 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.
CHERK effectue l’une des opérations de rang hermitien C := alphaA AH + bêtaC ou C := alphaAHA + bêtaC
[Android.Runtime.Register("CHERK", "(IIFLandroid/renderscript/Allocation;FLandroid/renderscript/Allocation;)V", "", ApiSince=23)]
public void CHERK(int Uplo, int Trans, float alpha, Android.Renderscripts.Allocation? A, float beta, Android.Renderscripts.Allocation? C);
[<Android.Runtime.Register("CHERK", "(IIFLandroid/renderscript/Allocation;FLandroid/renderscript/Allocation;)V", "", ApiSince=23)>]
member this.CHERK : int * int * single * Android.Renderscripts.Allocation * single * Android.Renderscripts.Allocation -> unit
Paramètres
- Uplo
- Int32
Spécifie si la partie triangulaire supérieure ou inférieure de C doit être référencée.
- Trans
- Int32
Type de transpose appliqué à l’opération.
- alpha
- Single
Alpha scalaire.
L’allocation d’entrée contient la matrice A, type Element#F32_2d’éléments pris en charge.
- beta
- Single
Bêta scalaire.
L’allocation d’entrée contient la matrice C, type Element#F32_2d’éléments pris en charge.
- Attributs
Remarques
CHERK effectue l’une des opérations de rang hermitien C := alpha*A*A**H + beta*C ou C := alpha**H*A + bêta*C
Détails : http://www.netlib.org/lapack/explore-html/d8/d52/cherk_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.