ScriptIntrinsicBLAS.DTRMV 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
DTRMV 执行矩阵向量运算之一 x := Ax 或 x := A**Tx
[Android.Runtime.Register("DTRMV", "(IIILandroid/renderscript/Allocation;Landroid/renderscript/Allocation;I)V", "", ApiSince=23)]
public void DTRMV (int Uplo, int TransA, int Diag, Android.Renderscripts.Allocation? A, Android.Renderscripts.Allocation? X, int incX);
[<Android.Runtime.Register("DTRMV", "(IIILandroid/renderscript/Allocation;Landroid/renderscript/Allocation;I)V", "", ApiSince=23)>]
member this.DTRMV : int * int * int * Android.Renderscripts.Allocation * Android.Renderscripts.Allocation * int -> unit
参数
- Uplo
- Int32
指定矩阵是上角还是下三角矩阵。
- TransA
- Int32
应用于矩阵 A 的转置的类型。
- Diag
- Int32
指定 A 是否为单位三角。
输入分配包含矩阵 A,支持的元素类型 Element#F64
。
输入分配包含矢量 x,支持的元素类型 Element#F64
。
- incX
- Int32
矢量 x 的元素的增量必须大于零。
- 属性
注解
DTRMV 执行矩阵向量运算 x := A*x 或 x := A**T*x
详细信息: http://www.netlib.org/lapack/explore-html/dc/d7e/dtrmv_8f.html
本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。