Why does the SVDS function in MATLAB return different results each time it is called?
Mostrar comentarios más antiguos
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.
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Linear Algebra en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!