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
sva
特異値近似
呼び出し手順
[U,s,V]=sva(A,k) [U,s,V]=sva(A,tol)
引数
- A
実数または複素数の行列
- k
整数
- tol
非負の実数
説明
特異値近似.
k
を>=1の整数とするとき,
[U,S,V]=sva(A,k)
は,
rank(B
)=k
として
B=U*S*V'
がA
の最良のL2近似となる
ような
U,S
およびV
を返します.
実数tol
を指定した[U,S,V]=sva(A,tol)
は,
A-B
のL2ノルムであるB=U*S*V'
の
最大値がtol
となるような
U,S
および V
を返します.
参照
- svd — 特異値分解
Report an issue | ||
<< spec | Eigenvalue and Singular Value | svd >> |