ScriptIntrinsicBLAS.SSPR(Int32, Single, Allocation, Int32, Allocation) メソッド

定義

SSPR はランク 1 操作 A := アルファx x**T + A を実行します。

[Android.Runtime.Register("SSPR", "(IFLandroid/renderscript/Allocation;ILandroid/renderscript/Allocation;)V", "", ApiSince=23)]
public void SSPR(int Uplo, float alpha, Android.Renderscripts.Allocation? X, int incX, Android.Renderscripts.Allocation? Ap);
[<Android.Runtime.Register("SSPR", "(IFLandroid/renderscript/Allocation;ILandroid/renderscript/Allocation;)V", "", ApiSince=23)>]
member this.SSPR : int * single * Android.Renderscripts.Allocation * int * Android.Renderscripts.Allocation -> unit

パラメーター

Uplo
Int32

上または下の三角形部分をパックフォームで指定するかどうかを指定します。

alpha
Single

スカラー アルファ。

X
Allocation

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

incX
Int32

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

Ap
Allocation

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

属性

注釈

SSPR はランク 1 操作 A := alpha*x*x**T + A を実行します。

詳細: http://www.netlib.org/lapack/explore-html/d2/d9b/sspr_8f.html

注: N*N 行列の場合、入力割り当てはサイズ dimX = N*(N+1)/2 の 1D 割り当てである必要があります。次のサブルーチンは、UPPER 三角行列 'a' をパックされた行列 'b' に変換する方法を示す例です。 k = 0 for i in range(0, n): for j in range(i, n): b[k++] = a[i, j]

Javaドキュメント。

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

適用対象