About "eigs" function
Mostrar comentarios más antiguos
Hello every one,
I want to run an LLE code when I need to use "eigs" function to solve an eigenproblem.
This is the syntax that I use in Matlab Online :
[YT, ~] = eigs(M, d+1, 0, 'Display', 0, 'StartVector', ones(size(M, 1), 1));
The problem is that I obtain a new result each time the code is executed.
If you can help me to overcome this problem ?
Best regards,
Respuestas (1)
Christine Tobler
el 4 de Jul. de 2020
1 voto
This was the case for old EIGS, it would use some random restart vectors that changed on every run. In the version of EIGS that supports the 'Display' and 'StartVector' options, the output should always stay the same.
If you're able to, could you share the matrix M and input d?
1 comentario
Achraf EL OMARI
el 4 de Jul. de 2020
Editada: Achraf EL OMARI
el 4 de Jul. de 2020
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!