次の方法で共有


ScriptIntrinsicBLAS.DGEMV メソッド

定義

DGEMV は行列ベクトル演算 y の 1 つを実行します。=αAx + βy または y := αA**Tx + βy

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

パラメーター

TransA
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 より大きくする必要があります。

属性

注釈

DGEMV は行列ベクトル演算 y のいずれかを実行します。y := alpha*A*x + beta*y または y := alpha*A**T*x + beta*y

詳細: http://www.netlib.org/lapack/explore-html/dc/da8/dgemv_8f.html

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

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

適用対象