Scilab-Branch-5.3-GIT
- Scilab help
- Linear Algebra
- aff2ab
- balanc
- bdiag
- chfact
- chol
- chsolve
- classmarkov
- cmb_lin
- coff
- colcomp
- companion
- cond
- det
- eigenmarkov
- ereduc
- expm
- fstair
- fullrf
- fullrfk
- genmarkov
- givens
- glever
- gschur
- gspec
- hess
- householder
- im_inv
- inv
- kernel
- kroneck
- linsolve
- lsq
- lu
- lyap
- nlev
- orth
- pbig
- pencan
- penlaur
- pinv
- polar
- proj
- projspec
- psmall
- qr
- quaskro
- randpencil
- range
- rank
- rankqr
- rcond
- rowcomp
- rowshuff
- rref
- schur
- spaninter
- spanplus
- spantwo
- spec
- sqroot
- squeeze
- sva
- svd
- sylv
- trace
Please note that the recommended version of Scilab is 2024.1.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 — 特異値分解
<< squeeze | Linear Algebra | svd >> |