共用方式為


ScriptIntrinsicBLAS.DTRSM 方法

定義

DTRSM 可解決其中一個矩陣方程式 op(A)X := alphaB 或 Xop(A) := alphaB op(A) 是其中一個 op(A) = A 或 op(A) = A**T

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

純量Alpha。

A
Allocation

輸入配置包含矩陣 A,支援的元素類型 Element#F64

B
Allocation

輸入配置包含矩陣 B,支援的元素類型 Element#F64

屬性

備註

DTRSM 可解決其中一個矩陣方程式 op(A)*X := alpha*B 或 X*op(A) := alpha*B op(A) 是其中一個 op(A) = A 或 op(A) = A**T

詳: http://www.netlib.org/lapack/explore-html/de/da7/dtrsm_8f.html

android.renderscript.ScriptIntrinsicBLAS.DTRSM(int, int, int, int, double, android.renderscript.Allocation, android.renderscript.Allocation)Java 檔。

此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。

適用於