Eigenvalus and Eigenvectors, Forming matrices

2 visualizaciones (últimos 30 días)
mohammed abdul wadood
mohammed abdul wadood el 26 de Mzo. de 2018
Comentada: mohammed abdul wadood el 26 de Mzo. de 2018
hi, if i have Eigenvalues and Eigenvectors matrices calculated from covariance matrix (A), how can i formed new matrix (H) that the first row for it is the eigenvector that corresponding to the largest eigenvalue, and similarly for the rest of rows.
H=[e1'; e2'; ... ;en']
thanks.
  4 comentarios
John D'Errico
John D'Errico el 26 de Mzo. de 2018
Sort returns TWO outputs.
you can use sort to sort a vector. Then take the second argument from sort to sort a second array or vector. This is what birdman did for you in his answer.
mohammed abdul wadood
mohammed abdul wadood el 26 de Mzo. de 2018
thanks sir, thank you for your helping

Iniciar sesión para comentar.

Respuesta aceptada

Birdman
Birdman el 26 de Mzo. de 2018
One approach:
A=[2 4;5 1]
[V,D,~]=eig(A)
[~,idx]=sort(D(D~=0),'descend')
V(idx,:)=V.' %corresponds to your desired H matrix

Más respuestas (0)

Categorías

Más información sobre Eigenvalues & Eigenvectors en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by