I’m not able to calculate the auto values and auto vectors of a matrix

Asked

Viewed 1,849 times

0

How do I calculate the eigenvectors and auto values of a matrix in MATLAB?

1 answer

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.

  • How so on the right??

  • 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.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.