ScriptIntrinsicBLAS.ZSYRK Method

Definition

ZSYRK performs one of the symmetric rank k operations C := alphaAAT + betaC or C := alphaATA + betaC

[Android.Runtime.Register("ZSYRK", "(IILandroid/renderscript/Double2;Landroid/renderscript/Allocation;Landroid/renderscript/Double2;Landroid/renderscript/Allocation;)V", "", ApiSince=23)]
public void ZSYRK (int Uplo, int Trans, Android.Renderscripts.Double2? alpha, Android.Renderscripts.Allocation? A, Android.Renderscripts.Double2? beta, Android.Renderscripts.Allocation? C);
[<Android.Runtime.Register("ZSYRK", "(IILandroid/renderscript/Double2;Landroid/renderscript/Allocation;Landroid/renderscript/Double2;Landroid/renderscript/Allocation;)V", "", ApiSince=23)>]
member this.ZSYRK : int * int * Android.Renderscripts.Double2 * Android.Renderscripts.Allocation * Android.Renderscripts.Double2 * 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.

A
Allocation

The input allocation contains matrix A, supported elements type Element#F64_2.

beta
Double2

The scalar beta.

C
Allocation

The input allocation contains matrix C, supported elements type Element#F64_2.

Attributes

Remarks

ZSYRK 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/de/d54/zsyrk_8f.html

Java documentation for android.renderscript.ScriptIntrinsicBLAS.ZSYRK(int, int, android.renderscript.Double2, android.renderscript.Allocation, android.renderscript.Double2, android.renderscript.Allocation).

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.

Applies to