ScriptIntrinsicBLAS.ZHER2K Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
ZHER2K performs one of the hermitian rank 2k operations C := alphaABH + conjg( alpha )BAH + betaC or C := alphaAH*B + conjg( alpha )*BHA + betaC
[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
Parameters
- Uplo
- Int32
Specifies whether the upper or lower triangular part of C is to be referenced.
- Trans
- Int32
The type of transpose applied to the operation.
- alpha
- Double2
The scalar alpha.
The input allocation contains matrix A, supported elements type Element#F64_2
.
The input allocation contains matrix B, supported elements type Element#F64_2
.
- beta
- Double
The scalar beta.
The input allocation contains matrix C, supported elements type Element#F64_2
.
- Attributes
Remarks
ZHER2K performs one of the hermitian rank 2k operations C := alpha*A*B**H + conjg( alpha )*B*A**H + beta*C or C := alpha*A**H*B + conjg( alpha )*B**H*A + beta*C
Details: http://www.netlib.org/lapack/explore-html/d7/dfa/zher2k_8f.html
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.