ScriptIntrinsicBLAS.ZTBMV 方法

定义

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

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

参数

Uplo
Int32

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

TransA
Int32

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

Diag
Int32

指定 A 是否为单位三角。

K
Int32

矩阵 A 的对角线数

A
Allocation

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

X
Allocation

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

incX
Int32

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

属性

注解

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

详细信息: http://www.netlib.org/lapack/explore-html/d3/d39/ztbmv_8f.html

注意:对于 N*N 矩阵,输入分配的大小还应为 N*N(dimY = N,dimX = N),但只会引用区域 N*(K+1)。 以下子例程可以演示如何将 UPPER 三角矩阵“a”转换为基于行的带矩阵“b”。 for i in range(0, n): for j in range(i, min(i+k+1, n)): b[i, j-i] = a[i, j]

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

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

适用于