ScriptIntrinsicBLAS.ZHER2 Method

Definition

ZHER2 performs the symmetric rank 2 operation A := alphaxyH + alphayxH + A

[Android.Runtime.Register("ZHER2", "(ILandroid/renderscript/Double2;Landroid/renderscript/Allocation;ILandroid/renderscript/Allocation;ILandroid/renderscript/Allocation;)V", "", ApiSince=23)]
public void ZHER2 (int Uplo, Android.Renderscripts.Double2? alpha, Android.Renderscripts.Allocation? X, int incX, Android.Renderscripts.Allocation? Y, int incY, Android.Renderscripts.Allocation? A);
[<Android.Runtime.Register("ZHER2", "(ILandroid/renderscript/Double2;Landroid/renderscript/Allocation;ILandroid/renderscript/Allocation;ILandroid/renderscript/Allocation;)V", "", ApiSince=23)>]
member this.ZHER2 : int * Android.Renderscripts.Double2 * Android.Renderscripts.Allocation * int * Android.Renderscripts.Allocation * int * Android.Renderscripts.Allocation -> unit

Parameters

Uplo
Int32

Specifies whether the upper or lower triangular part is to be referenced.

alpha
Double2

The scalar alpha.

X
Allocation

The input allocation contains vector x, supported elements type Element#F64_2.

incX
Int32

The increment for the elements of vector x, must be larger than zero.

Y
Allocation

The input allocation contains vector y, supported elements type Element#F64_2.

incY
Int32

The increment for the elements of vector y, must be larger than zero.

A
Allocation

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

Attributes

Remarks

ZHER2 performs the symmetric rank 2 operation A := alpha*x*y**H + alpha*y*x**H + A

Details: http://www.netlib.org/lapack/explore-html/da/d8a/zher2_8f.html

Java documentation for android.renderscript.ScriptIntrinsicBLAS.ZHER2(int, android.renderscript.Double2, android.renderscript.Allocation, int, android.renderscript.Allocation, int, 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