what algorithm does EIG() MATLAB function use ?
显示 更早的评论
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 个评论
Steven Lord
2016-4-28
The eig function is built into MATLAB and we don't distribute its source code.
Can you say a little more about why you want to know what algorithm eig uses?
salah eddine
2016-5-26
John D'Errico
2016-5-26
编辑:John D'Errico
2016-5-26
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.
salah eddine
2016-7-5
回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Linear Algebra 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!