Singular Value Decomposition (SVD) is a factorization of a real or complex matrix, with many useful applications in signal processing and statistics.
The Singular Value Decomposition (SVD) of a rectangular matrix A
is a decomposition of the form:
A = U S V*
where U
and V
are orthogonal matrices, and S
is a diagonal matrix containing the singular values.
In scientific software r for statistical computing, function svd
computes this decomposition.