ScriptIntrinsicBLAS.CTRSM Method

Definition

CTRSM solves one of the matrix equations op(A)X := alphaB or Xop(A) := alphaB op(A) is one of op(A) = A or op(A) = AT or op(A) = AH

[Android.Runtime.Register("CTRSM", "(IIIILandroid/renderscript/Float2;Landroid/renderscript/Allocation;Landroid/renderscript/Allocation;)V", "", ApiSince=23)]
public void CTRSM (int Side, int Uplo, int TransA, int Diag, Android.Renderscripts.Float2? alpha, Android.Renderscripts.Allocation? A, Android.Renderscripts.Allocation? B);
[<Android.Runtime.Register("CTRSM", "(IIIILandroid/renderscript/Float2;Landroid/renderscript/Allocation;Landroid/renderscript/Allocation;)V", "", ApiSince=23)>]
member this.CTRSM : int * int * int * int * Android.Renderscripts.Float2 * Android.Renderscripts.Allocation * Android.Renderscripts.Allocation -> unit

Parameters

Side
Int32

Specifies whether the symmetric matrix A appears on the left or right.

Uplo
Int32

Specifies whether matrix A is upper or lower triangular.

TransA
Int32

The type of transpose applied to matrix A.

Diag
Int32

Specifies whether or not A is unit triangular.

alpha
Float2

The scalar alpha.

A
Allocation

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

B
Allocation

The input allocation contains matrix B, supported elements type Element#F32_2.

Attributes

Remarks

CTRSM solves one of the matrix equations op(A)*X := alpha*B or X*op(A) := alpha*B op(A) is one of op(A) = A or op(A) = A**T or op(A) = A**H

Details: http://www.netlib.org/lapack/explore-html/de/d30/ctrsm_8f.html

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