How do I find the singular values of an array?

1

How do I find the unique values of an array in MATLAB?

    
asked by anonymous 30.10.2014 / 01:24

1 answer

1

To get the singular values of an array you can do the following:

v = svds(SuaMatriz);

This function computes the six largest singular values of the matrix, as well as the associated vectors.

If you need more or less unique values you can use:

v = svds(SuaMatriz, NumeroDeValoresSingulares);

More information here .

    
30.10.2014 / 10:24