Why does the SVDS function in MATLAB return different results each time it is called?
Ältere Kommentare anzeigen
I execute the following code to find the largest singular value of a matrix:
x=randn(3)+j*randn(3);
[u,s,v]=svds(x,1)
[u2,s2,v2]=svds(x,1)
The outputs of the second and third lines are different.
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Linear Algebra finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!