I can not calculate the auto values and auto vectors of an array

0

How do I calculate the auto vectors and auto values of an array in MATLAB?

    
asked by anonymous 28.10.2014 / 21:50

1 answer

1

And only use the function eig .

For example, if your array calls A :

[V, D] = eig(A)

V and an array whose columns are the eigenvectors on the right and D and a diagonal matrix with eigenvalues.

More information on reference .

    
28.10.2014 / 22:20