Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
2023.0.0 - 日本語


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 を返します.

A=rand(5,4)*rand(4,5);
[U,s,V]=sva(A,2);
B=U*s*V';
svd(A)
svd(B)
clean(svd(A-B))

参照

  • svd — 特異値分解
Report an issue
<< spec Eigenvalue and Singular Value svd >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Tue Mar 07 09:28:43 CET 2023