Which algorithm eig () function use ?
16 ビュー (過去 30 日間)
古いコメントを表示
Which algorithm eig () function use ?
I have to impliment on FPGA , can how can i find eig whithout using matlab functions , or very less
0 件のコメント
回答 (4 件)
Jan
2013 年 9 月 10 日
Which version of Matlab do you mean?
There are e.g. differences between Matlab 7.1 and Matlab 7.9. And even the same Matlab version produces slightly different results on different platforms.
0 件のコメント
Geert
2013 年 9 月 10 日
編集済み: Geert
2013 年 9 月 10 日
Good question.
I always thought the default eigenvalue algorithm was the QR algorithm ( http://people.inf.ethz.ch/arbenz/ewp/Lnotes/chapter3.pdf ), but this is just a guess...
0 件のコメント
Abdullah Khan
2013 年 9 月 10 日
2 件のコメント
Jan
2013 年 9 月 10 日
Do I understand correctly, that your question does not concern Matlab's eig() function, but that you are searching for a general algorithm? Then asking WikiPedia might be a better idea than a Matlab forum.
MD SHAHNAWAZ HUSSAIN
2019 年 3 月 10 日
can u plz tell me which algo has been used for eig() in matlab 2014a and 2018b?
Christine Tobler
2019 年 3 月 11 日
There are different algorithms for solving eigenvalue problems, depending on the properties of the inputs. The most well-known standard library for linear algebra operations is LAPACK, which is open source. Here is a reference page on solving eigenvalue problems from LAPACK:
and here's a list of some LAPACK functions related to solving the eigenvalue problem:
If you need MATLAB code that calls EIG to be translated to C code, you could also look at MATLAB Coder, which will generate C code to solve, for example, an eigenvalue problem if EIG is used.
1 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!