ScriptIntrinsicBLAS.CHEMV メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
CHEMV は行列ベクトル演算 y := αAx + β*y を実行します。
[Android.Runtime.Register("CHEMV", "(ILandroid/renderscript/Float2;Landroid/renderscript/Allocation;Landroid/renderscript/Allocation;ILandroid/renderscript/Float2;Landroid/renderscript/Allocation;I)V", "", ApiSince=23)]
public void CHEMV(int Uplo, Android.Renderscripts.Float2? alpha, Android.Renderscripts.Allocation? A, Android.Renderscripts.Allocation? X, int incX, Android.Renderscripts.Float2? beta, Android.Renderscripts.Allocation? Y, int incY);
[<Android.Runtime.Register("CHEMV", "(ILandroid/renderscript/Float2;Landroid/renderscript/Allocation;Landroid/renderscript/Allocation;ILandroid/renderscript/Float2;Landroid/renderscript/Allocation;I)V", "", ApiSince=23)>]
member this.CHEMV : int * Android.Renderscripts.Float2 * Android.Renderscripts.Allocation * Android.Renderscripts.Allocation * int * Android.Renderscripts.Float2 * Android.Renderscripts.Allocation * int -> unit
パラメーター
- Uplo
- Int32
上または下の三角形のパーツを参照するかどうかを指定します。
- alpha
- Float2
スカラー アルファ。
入力割り当てには、 Element#F32_2サポートされている要素の種類であるマトリックス A が含まれます。
入力の割り当てには、サポートされている要素の型であるベクター x Element#F32_2が含まれます。
- incX
- Int32
ベクトル x の要素の増分は、0 より大きくする必要があります。
- beta
- Float2
スカラー ベータ。
入力の割り当てには、サポートされているベクター y の要素型 Element#F32_2が含まれます。
- incY
- Int32
ベクトル y の要素の増分は、0 より大きくする必要があります。
- 属性
注釈
CHEMV は行列ベクトル演算 y := alpha*A*x + beta*y を実行します。
詳細: http://www.netlib.org/lapack/explore-html/d7/d51/chemv_8f.html
このページの一部は、Androidオープンソースプロジェクトによって作成および共有された作業に基づく変更でありCreative Commons 2.5属性ライセンスに記載されている条件に従って使用されます。