what algorithm does EIG() MATLAB function use ?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi,
I would like to know which algorithms doses the built-in function EIG uses to compute the eigenvalues of a real symmetric definite positive matrix. I tried >>edit eig to get the script but i couldn't.
Thanks
4 Kommentare
John D'Errico
am 26 Mai 2016
Bearbeitet: John D'Errico
am 26 Mai 2016
You could do it by breaking the problem down into those respective blocks, thus extract each block in turn, then solve each subproblem using eig, all in a loop.
Will this be more efficient than simple use of eig? It depends, because you would then be introducing extra function call overhead, extra work that may actually exceed the gain if your problem is not too large.
Antworten (0)
Siehe auch
Kategorien
Mehr zu Linear Algebra finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!