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
aproximação em valores singulares
Seqüência de Chamamento
[U,s,V]=sva(A,k) [U,s,V]=sva(A,tol)
Parâmetros
- A
matriz de reais ou complexos
- k
inteiro
- tol
número real não-negativo
Descrição
Aproximação em valores singulares.
[U,S,V]=sva(A,k)
com k
inteiro
>=1, retorna U,S
e V
tais que
B=U*S*V'
é a melhor aproximação L2 de
A
com
posto(B
)=k
.
[U,S,V]=sva(A,tol)
com tol
real retorna U,S
e V
tais que
B=U*S*V'
e a norma-L2 de A-B
é, no
máximo, tol
.
Ver Também
Report an issue | ||
<< spec | Eigenvalue and Singular Value | svd >> |