次の方法で共有


ScriptIntrinsicBLAS.DGBMV メソッド

定義

DGBMV は、行列ベクトル演算 y := αAx + βy または y := αA**Tx + βy のいずれかを実行します。

[Android.Runtime.Register("DGBMV", "(IIIDLandroid/renderscript/Allocation;Landroid/renderscript/Allocation;IDLandroid/renderscript/Allocation;I)V", "", ApiSince=23)]
public void DGBMV (int TransA, int KL, int KU, double alpha, Android.Renderscripts.Allocation? A, Android.Renderscripts.Allocation? X, int incX, double beta, Android.Renderscripts.Allocation? Y, int incY);
[<Android.Runtime.Register("DGBMV", "(IIIDLandroid/renderscript/Allocation;Landroid/renderscript/Allocation;IDLandroid/renderscript/Allocation;I)V", "", ApiSince=23)>]
member this.DGBMV : int * int * int * double * Android.Renderscripts.Allocation * Android.Renderscripts.Allocation * int * double * Android.Renderscripts.Allocation * int -> unit

パラメーター

TransA
Int32

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

KL
Int32

行列 A のサブ対角線の数。

KU
Int32

行列 A のスーパー対角線の数。

alpha
Double

スカラー アルファ。

A
Allocation

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

X
Allocation

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

incX
Int32

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

beta
Double

スカラー ベータ。

Y
Allocation

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

incY
Int32

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

属性

注釈

DGBMV は行列ベクトル演算 y の 1 つを実行します:= alpha*A*x + beta*y または y := alpha*A**T*x + beta*y

詳細: http://www.netlib.org/lapack/explore-html/d2/d3f/dgbmv_8f.html

注: M*N 行列の場合、入力割り当てはサイズ M*N (dimY = M, dimX = N) である必要がありますが、リージョン M*(KL+KU+1) のみが参照されます。 次のサブルーチンは、元の行列 'a' を行ベースのバンド 行列 'b' に変換する方法を示す例です。 for i in range(0, m): for j in range(max(0, i-kl), min(i+ku+1, n)): b[i, j-i+kl] = a[i, j]

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

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

適用対象