ScriptIntrinsicBLAS.ZHER2K 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.
ZHER2K effectue l’une des opérations hermitiennes C := alpha A B H+ conjg( alpha )BAH + bêtaC ou C := alphaAH*B + conjg( alpha )*BHA + bêtaC
[Android.Runtime.Register("ZHER2K", "(IILandroid/renderscript/Double2;Landroid/renderscript/Allocation;Landroid/renderscript/Allocation;DLandroid/renderscript/Allocation;)V", "", ApiSince=23)]
public void ZHER2K(int Uplo, int Trans, Android.Renderscripts.Double2? alpha, Android.Renderscripts.Allocation? A, Android.Renderscripts.Allocation? B, double beta, Android.Renderscripts.Allocation? C);
[<Android.Runtime.Register("ZHER2K", "(IILandroid/renderscript/Double2;Landroid/renderscript/Allocation;Landroid/renderscript/Allocation;DLandroid/renderscript/Allocation;)V", "", ApiSince=23)>]
member this.ZHER2K : int * int * Android.Renderscripts.Double2 * Android.Renderscripts.Allocation * Android.Renderscripts.Allocation * double * 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
- Double2
Alpha scalaire.
L’allocation d’entrée contient la matrice A, type Element#F64_2
d’éléments pris en charge.
L’allocation d’entrée contient la matrice B, type Element#F64_2
d’éléments pris en charge.
- beta
- Double
Bêta scalaire.
L’allocation d’entrée contient la matrice C, type Element#F64_2
d’éléments pris en charge.
- Attributs
Remarques
ZHER2K effectue l’une des opérations 2k du rang hermitien C := alpha*A*B**H + conjg( alpha )*B*A**H + beta*C ou C := alpha**H*B + conjg( alpha )*B**H*H*A + beta*C
Détails : http://www.netlib.org/lapack/explore-html/d7/dfa/zher2k_8f.html
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.