WLJS LogoWLJS Notebook

SingularValues

SingularValues[m] gives the singular value decomposition for a numerical matrix m. The result is a list {u, w, v}, where w is the list of singular values, and m can be written as ConjugateTranspose[u].DiagonalMatrix[w].v.

Examples

SingularValues[{{1, 2}, {3, 4}}]
{u, w, v} = SingularValues[RandomReal[1, {3, 3}]];
w

Please visit the official Wolfram Language Reference for more details.

On this page