필터 지우기
필터 지우기

how to find eigenvalue and eigenvectors from Hermitian photo ??

조회 수: 1 (최근 30일)
Anas A.Salam
Anas A.Salam 2013년 3월 28일
hello i have some problems and i don't know how to solve it so if you know some thing please help me:) my problem is: i have the photo as you can see it and i want to find eigenvalue and eigenvectors as Hermitian so what is the code to find them ?? by the way i have another question, when i try to use
[V,D] = eig(A,B,flag)
and i used 'chol', what is B should be ?? note that i use attach photo as A.

채택된 답변

Matt J
Matt J 2013년 3월 28일
I'm pretty sure that
[V,D] = eig(A)
is smart enough to check whether your A matrix is Hermitian, but you could do
[V,D] =eig(A, eye(size(A)), 'chol')
  댓글 수: 7
Matt J
Matt J 2013년 3월 30일
편집: Matt J 2013년 3월 30일
If you're getting real eigenvectors right now, one way to obtain a complex ones is to multiply them by i=sqrt(-1). Remember that if v is an eigenvector, then so is c*v for any scalar, c, real or complex.
Anas A.Salam
Anas A.Salam 2013년 3월 30일
thank you so much :)

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

추가 답변 (0개)

카테고리

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