ScriptIntrinsicBLAS.ZHERK 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.
ZHERK performs one of the hermitian rank k operations C := alphaAAH + betaC or C := alphaAHA + betaC
[Android.Runtime.Register("ZHERK", "(IIDLandroid/renderscript/Allocation;DLandroid/renderscript/Allocation;)V", "", ApiSince=23)]
public void ZHERK (int Uplo, int Trans, double alpha, Android.Renderscripts.Allocation? A, double beta, Android.Renderscripts.Allocation? C);
[<Android.Runtime.Register("ZHERK", "(IIDLandroid/renderscript/Allocation;DLandroid/renderscript/Allocation;)V", "", ApiSince=23)>]
member this.ZHERK : int * int * double * 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
- Double
The scalar alpha.
The input allocation contains matrix A, 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
ZHERK performs one of the hermitian rank k operations C := alpha*A*A**H + beta*C or C := alpha*A**H*A + beta*C
Details: http://www.netlib.org/lapack/explore-html/d1/db1/zherk_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.