- D(2,2) would give you the 2nd eigenvalue
- V(:,2) would give you the 2nd eigenvector
right eigenvector corresponding to an eigenvalue 1
11 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
A123456
am 23 Jan. 2016
Kommentiert: Sebastian Castro
am 25 Jan. 2016
How can I find the eigenvector corresponding to the eigenvalue
0 Kommentare
Akzeptierte Antwort
Sebastian Castro
am 24 Jan. 2016
As the documentation for the eig function says:
[V,D] = eig(A) returns diagonal matrix D of eigenvalues and matrix V whose columns are the corresponding right eigenvectors, so that A*V = V*D.
So, if you use the command above, for example
- Sebastian
2 Kommentare
Sebastian Castro
am 25 Jan. 2016
Also from the documentation for eig (hint: you should look at it!)
[V,D,W] = eig(A) also returns full matrix W whose columns are the corresponding left eigenvectors, so that W'*A = D*W'.
- Sebastian
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Linear Algebra finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!