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