次の方法で共有


ScriptIntrinsicBLAS.DTRMM メソッド

定義

DTRMM は行列行列演算 B := αop(A)B または B := αBop(A) op(A) が op(A) = A または op(A) = A**T のいずれかである行列行列演算の 1 つを実行します

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

パラメーター

Side
Int32

対称行列 A を左または右に表示するかどうかを指定します。

Uplo
Int32

行列 A が上または下の三角形かどうかを指定します。

TransA
Int32

行列 A に適用される転置の型。

Diag
Int32

A が単位の三角形かどうかを指定します。

alpha
Double

スカラー アルファ。

A
Allocation

入力の割り当てには、サポートされている要素の種類 Element#F64である行列 A が含まれています。

B
Allocation

入力の割り当てには、サポートされている要素の種類 Element#F64であるマトリックス B が含まれています。

属性

注釈

DTRMM は行列行列演算 B := alpha*op(A)*B または B := alpha*B*op(A) op(A) が op(A) = A または op(A) = A**T のいずれかの行列行列演算を実行します

詳細: http://www.netlib.org/lapack/explore-html/dd/d19/dtrmm_8f.html

の Java ドキュメントandroid.renderscript.ScriptIntrinsicBLAS.DTRMM(int, int, int, int, double, android.renderscript.Allocation, android.renderscript.Allocation)

このページの一部は、Android オープンソース プロジェクトによって作成および共有され、クリエイティブ コモンズ 2.5 属性ライセンスに記載されている条件に従って使用される作業に基づく変更です。

適用対象