ScriptIntrinsicBLAS.DSYRK 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.
DSYRK performs one of the symmetric rank k operations C := alphaAAT + betaC or C := alphaATA + betaC
[Android.Runtime.Register("DSYRK", "(IIDLandroid/renderscript/Allocation;DLandroid/renderscript/Allocation;)V", "", ApiSince=23)]
public void DSYRK (int Uplo, int Trans, double alpha, Android.Renderscripts.Allocation? A, double beta, Android.Renderscripts.Allocation? C);
[<Android.Runtime.Register("DSYRK", "(IIDLandroid/renderscript/Allocation;DLandroid/renderscript/Allocation;)V", "", ApiSince=23)>]
member this.DSYRK : 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
.
- beta
- Double
The scalar beta.
The input allocation contains matrix C, supported elements type Element#F64
.
- Attributes
Remarks
DSYRK performs one of the symmetric rank k operations C := alpha*A*A**T + beta*C or C := alpha*A**T*A + beta*C
Details: http://www.netlib.org/lapack/explore-html/dc/d05/dsyrk_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.