次の方法で共有


ScriptIntrinsicBLAS.SSYMV メソッド

定義

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

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

パラメーター

Uplo
Int32

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

alpha
Single

スカラー アルファ。

A
Allocation

入力の割り当てには、サポートされている要素の種類 Element#F32である行列 A が含まれています。

X
Allocation

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

incX
Int32

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

beta
Single

スカラー ベータ。

Y
Allocation

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

incY
Int32

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

属性

注釈

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

詳細: http://www.netlib.org/lapack/explore-html/d2/d94/ssymv_8f.html

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

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

適用対象