Get the eigenvalue of a known eigenvector

조회 수: 1 (최근 30일)
Sam R
Sam R 2017년 11월 21일
댓글: Matt J 2017년 11월 22일
I have a matrix M1 of 784x784, where each column is an eigenvector. I am looking for a way to get the eigenvalues for each eigenvector and store them in another matrix M2 of 784x1.
The matrix M3 is a matrix of 784x300. M1 contains eigenvectors of M3.
  댓글 수: 1
Matt J
Matt J 2017년 11월 22일
The matrix M3 is a matrix of 784x300. M1 contains eigenvectors of M3.
Non-square matrices cannot have eigenvectors.

댓글을 달려면 로그인하십시오.

답변 (1개)

John D'Errico
John D'Errico 2017년 11월 21일
What basic property do you know about the eigenvalues and eigenvectors? Come on, if you are using them, you ought to know!
If v is en eigenvector of the matrix A, then what do you know about A*v? How does that product relate to the original vector v?
If each column of the matrix V is an eigenvector, then what does A*V give you? Can you determine the eigenvalues from that product?
  댓글 수: 2
Sam R
Sam R 2017년 11월 21일
편집: Sam R 2017년 11월 21일
Well, I'm trying to do basically this in Matlab, but I keep getting another matrix instead of a scalar as a result of the division.
So basically
v1 = [1; 0; 1];
v2 = A*v1;
Which would make
v2 = [2; 0; 2];
Then I thought I'd get the eigenvalue by doing
l = v2./v1;
But it gives me a column vector, and I need a scalar.
Not really sure how to do this in Matlab.
Torsten
Torsten 2017년 11월 22일
편집: Torsten 2017년 11월 22일
Search for a nonzero component i in v1 and calculate l as
l = v2(i)/v1(i)
Best wishes
Torsten.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Linear Algebra에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by