What does roots/ eig do exactly?
14 ビュー (過去 30 日間)
古いコメントを表示
I want to write a programm on Matlab, without using implemented functions. This programm should be similiar to the Matlab function roots. But I am not sure what roots does, is there any possibility to read something like a pseudo-code of roots or eig? Or is it possible to find .m file that fullfills this conditions?
Is roots simply using the QR decomposition with shifts ?
0 件のコメント
採用された回答
Sean de Wolski
2015 年 8 月 5 日
編集済み: Sean de Wolski
2015 年 8 月 5 日
>>edit roots
7 件のコメント
James Tursa
2015 年 8 月 5 日
By looking at the code for roots you have that answer. It constructs a matrix where the characteristic polynomial of that matrix is your polynomial. Then it uses eig to find eigenvalues of that matrix, which will be equal to the roots of the characteristic polynomial.
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!