フィルターのクリア

finding eigenvectors matching to eigenvalues

4 ビュー (過去 30 日間)
Elinor Ginzburg
Elinor Ginzburg 2020 年 5 月 24 日
編集済み: KSSV 2020 年 5 月 24 日
hello,
I hope it's fine that I ask this question here, couldn't find the information on the site. when I use the following function:
[V,D,W] = eigs(Matrix);
may I assume that the first column in V
c1 = V(1,:);
correspond to the first eigenvalue in D i.e. D(0,0) and so on? it sound logical that it will be so, but I want to make sure.
Thank you!

採用された回答

KSSV
KSSV 2020 年 5 月 24 日
編集済み: KSSV 2020 年 5 月 24 日
The respective Eigenvalues would be diag(D)
v1 = V(:,1) ; e1 = D(1,1) ;
v2 = V(:,2) ; e2 = D(2,2) ; % and so on

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLinear Algebra についてさらに検索

タグ

製品


リリース

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by