ScriptIntrinsicBLAS.DSYMV メソッド

定義

DSYMV は行列ベクトル演算 y を実行します。= αAx + β*y

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

パラメーター

Uplo
Int32

上または下の三角形のパーツを参照するかどうかを指定します。

alpha
Double

スカラー アルファ。

A
Allocation

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

X
Allocation

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

incX
Int32

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

beta
Double

スカラー ベータ。

Y
Allocation

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

incY
Int32

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

属性

注釈

DSYMV は行列ベクトル演算 y := alpha*A*x + beta*y を実行します

詳細: http://www.netlib.org/lapack/explore-html/d8/dbe/dsymv_8f.html

Javaドキュメント。

このページの一部は、によって作成および共有され、に記載されている条件に従って使用される作業に基づく変更です。

適用対象