Scilab-Branch-6.1-GIT
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
pinv
擬似逆行列
呼び出し手順
pinv(A,[tol])
引数
- A
実数または複素数の行列
- tol
実数
説明
X= pinv(A)
は,
A'
と同じ次元の以下のような
行列X
を出力します:
A*X*A = A, X*A*X = X
そして
A*X
および X*A
は共にエルミート行列です.
計算は特異値分解に基づいており,
許容値よりも小さい特異値は 0 として扱われます:
この許容誤差は X=pinv(A,tol)
でアクセスされます.
使用される関数
pinv
関数は特異値分解に基づいています
(Scilab関数 svd
).
Report an issue | ||
<< lsq | Linear Equations | Markov Matrices >> |