ScriptIntrinsicBLAS.DTPMV 方法

定义

DTPMV 执行矩阵向量运算 x := Ax 或 x := A**Tx

[Android.Runtime.Register("DTPMV", "(IIILandroid/renderscript/Allocation;Landroid/renderscript/Allocation;I)V", "", ApiSince=23)]
public void DTPMV (int Uplo, int TransA, int Diag, Android.Renderscripts.Allocation? Ap, Android.Renderscripts.Allocation? X, int incX);
[<Android.Runtime.Register("DTPMV", "(IIILandroid/renderscript/Allocation;Landroid/renderscript/Allocation;I)V", "", ApiSince=23)>]
member this.DTPMV : int * int * int * Android.Renderscripts.Allocation * Android.Renderscripts.Allocation * int -> unit

参数

Uplo
Int32

指定矩阵是上角还是下三角矩阵。

TransA
Int32

应用于矩阵 A 的转置的类型。

Diag
Int32

指定 A 是否为单位三角。

Ap
Allocation

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

X
Allocation

输入分配包含矢量 x,支持的元素类型 Element#F64

incX
Int32

矢量 x 的元素的增量必须大于零。

属性

注解

DTPMV 执行矩阵向量运算 x := A*x 或 x := A**T*x

详细信息: http://www.netlib.org/lapack/explore-html/dc/dcd/dtpmv_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.renderscript.ScriptIntrinsicBLAS.DTPMV(int, int, int, android.renderscript.Allocation, android.renderscript.Allocation, int)Java 文档

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

适用于