Why does the SVDS function in MATLAB return different results each time it is called?
Show older comments
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.
Accepted Answer
More Answers (0)
Categories
Find more on Linear Algebra in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!