0
How do I calculate the eigenvectors and auto values of a matrix in MATLAB?
0
How do I calculate the eigenvectors and auto values of a matrix in MATLAB?
1
And only use the function eig
.
For example, if your matrix calls A
:
[V, D] = eig(A)
V
is a matrix that the columns are the eigenvectors on the right and D
and a diagonal matrix with eigenvalues.
More information on reference.
Browser other questions tagged matlab
You are not signed in. Login or sign up in order to post.
How so on the right??
– Moallison.
The eigenvectors appear from the Equature 'Av = Lv', the v is on the right. If Voce does it on the left and on the left.
– Lucas Virgili