Given an m times n matrix A with n larger than m. The singular value decomposition
[U,S,V] = svd(A);
computes the matrices U,S,V.
The matrix U consists of the left singular eigenvectors which are the eigenvectors of A*A.' while V consists of the right singular eigenvalues which are the eigenvec...