Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
fullrf
フルランク分解
呼び出し手順
[Q,M,rk]=fullrf(A,[tol])
引数
- A
実数または複素数の行列
- tol
実数 (ランク定義時の閾値)
- Q,M
実数または複素数の行列
- rk
整数 (
A
のランク)
説明
フルランク分解 : fullrf
は,
A = Q*M
となるような
Q
および M
を返します.
ただし,
range(Q
)=range(A
) および
ker(M
)=ker(A
),
Q
フル列ランク , M
フル行ランク,
rk = rank(A) = #columns(Q) = #rows(M)
です.
tol
はオプションの実数パラメータです
(デフォルト値は sqrt(%eps)
です).
A
のランクrk
は
norm(A)*tol
より大きな
特異値の数として定義されます.
Aが対称の場合,
fullrf
は M=Q'
を返します.
例
Report an issue | ||
<< colcomp | Kernel | fullrfk >> |