Scilab 6.1.0
      
      
    Please note that the recommended version of Scilab is 2026.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 >> |