ScriptIntrinsicBLAS.DTRMM 方法

定义

DTRMM 执行矩阵运算 B := alphaop(A)B 或 B := alphaBop(A) op(A) 是 op(A) = A 或 op(A) = A 或 op(A) = A**T

[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

标量 alpha。

A
Allocation

输入分配包含矩阵 A,支持的元素类型 Element#F64

B
Allocation

输入分配包含矩阵 B,支持的元素类型 Element#F64

属性

注解

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

适用于 . 的 android.renderscript.ScriptIntrinsicBLAS.DTRMM(int, int, int, int, double, android.renderscript.Allocation, android.renderscript.Allocation)Java 文档

本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。

适用于