how to find eigenvalue and eigenvectors from Hermitian photo ??
5 ビュー (過去 30 日間)
古いコメントを表示
hello i have some problems and i don't know how to solve it so if you know some thing please help me:) my problem is: i have the photo as you can see it and i want to find eigenvalue and eigenvectors as Hermitian so what is the code to find them ?? by the way i have another question, when i try to use
[V,D] = eig(A,B,flag)
and i used 'chol', what is B should be ?? note that i use attach photo as A.
0 件のコメント
採用された回答
Matt J
2013 年 3 月 28 日
I'm pretty sure that
[V,D] = eig(A)
is smart enough to check whether your A matrix is Hermitian, but you could do
[V,D] =eig(A, eye(size(A)), 'chol')
7 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!