ScriptIntrinsicBLAS.CTBSV メソッド

定義

CTBSV は、数式 Ax = b または A**T x = b または A**H*x = b のいずれかのシステムを解きます。

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

パラメーター

Uplo
Int32

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

TransA
Int32

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

Diag
Int32

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

K
Int32

行列 A のオフ対角線の数

A
Allocation

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

X
Allocation

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

incX
Int32

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

属性

注釈

CTBSV は、式 A*x = b または A**T*x = b または A**H*x = b のいずれかのシステムを解きます

詳細: http://www.netlib.org/lapack/explore-html/d9/d5f/ctbsv_8f.html

注: N*N 行列の場合、入力割り当てはサイズ N*N (dimY = N, dimX = N) である必要がありますが、領域 N*(K+1) のみが参照されます。 次のサブルーチンは、UPPER 三角行列 'a' を行ベースのバンド 行列 'b' に変換する方法を示す例です。 for i in range(0, n): for j in range(i, min(i+k+1, n)): b[i, j-i] = a[i, j]

Javaドキュメント。

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

適用対象