ScriptIntrinsicBLAS.STRMV メソッド

定義

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

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

パラメーター

Uplo
Int32

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

TransA
Int32

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

Diag
Int32

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

A
Allocation

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

X
Allocation

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

incX
Int32

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

属性

注釈

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

詳細: http://www.netlib.org/lapack/explore-html/de/d45/strmv_8f.html

Javaドキュメント。

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

適用対象