次の方法で共有


ScriptIntrinsicBLAS.ZTPMV メソッド

定義

ZTPMV は行列ベクトル演算 x := Ax または x := A**Tx または x := A**H*x のいずれかを実行します。

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

パラメーター

Uplo
Int32

マトリックスが上または下の三角形の行列かどうかを指定します。

TransA
Int32

行列 A に適用される転置の型。

Diag
Int32

A が単位の三角形かどうかを指定します。

Ap
Allocation

入力割り当てには、サポートされている要素の種類 Element#F64_2であるパックされたマトリックス A が含まれています。

X
Allocation

入力割り当てには、サポートされている要素の型 Element#F64_2であるベクター x が含まれています。

incX
Int32

ベクトル x の要素の増分は、0 より大きくする必要があります。

属性

注釈

ZTPMV は行列ベクトル演算 x := A*x または x := A**T*x または x := A**H*x のいずれかを実行します。

詳細: http://www.netlib.org/lapack/explore-html/d2/d9e/ztpmv_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]

の Java ドキュメントandroid.renderscript.ScriptIntrinsicBLAS.ZTPMV(int, int, int, android.renderscript.Allocation, android.renderscript.Allocation, int)

このページの一部は、Android オープンソース プロジェクトによって作成および共有され、クリエイティブ コモンズ 2.5 属性ライセンスに記載されている条件に従って使用される作業に基づく変更です。

適用対象