svd
svd(A, [thin=true]) -> U, S, V
Wrapper around svdfact
extracting all parts the factorization to a tuple. Direct use of svdfact
is therefore generally more efficient. Computes the SVD of A
, returning U
, vector S
, and V
such that A == U*diagm(S)*V'
. If thin
is true
, an economy mode decomposition is returned. The default is to produce a thin decomposition.
Examples
See Also
User Contributed Notes
Add a Note
The format of note supported is markdown, use triple backtick to start and end a code block.