How can I plot a graph for only one eigen value against a variable? I'm only getting one M!

I am trying to plot a graph for k:[0,1] against the larger eigenvalue from the corresponding matrix. i.e for each value of k I am only interested in the larger of the two eigenvalues from the 2x2 matrix M.
This is a very basic code, I know, but having played around with it for a few days now I could really use some help!
% code
A=3.3;
B=0.45;
a=B;
b=((A+sqrt(A^2-4*B^2))/(2*B))^2;
c=-2*B;
d=-1-b;
D=500;
for k=0.0:0.01:1.0
M=[a-k^2 b; c d-D*k^2];
lam=eig(M);
end
plot(k,lam)
end

 채택된 답변

Akira Agata
Akira Agata 2017년 2월 17일
편집: Akira Agata 2017년 2월 17일
I have slightly modified your code. I hope this will help!
A=3.3;
B=0.45;
a=B;
b=((A+sqrt(A^2-4*B^2))/(2*B))^2;
c=-2*B;
d=-1-b;
D=500;
k = (0:0.01:1);
lam = zeros(2,length(k));
for kk = 1:length(k)
M=[a-k(kk)^2 b; c d-D*k(kk)^2];
lam(:,kk)=eig(M);
end
plot(k,lam)

댓글 수: 3

Thank you for your comment. This produces a graph, but for both eigenvalues. What I am trying to do is plot only the larger of each eigenvalue, and wondered if there is a simple way to do this. Thanks again.
Yes, that's a piece of cake!
Let me slightly modify the code again.
A=3.3;
B=0.45;
a=B;
b=((A+sqrt(A^2-4*B^2))/(2*B))^2;
c=-2*B;
d=-1-b;
D=500;
k = (0:0.01:1);
lam = zeros(1,length(k));
for kk = 1:length(k)
M=[a-k(kk)^2 b; c d-D*k(kk)^2];
lam(kk)=max(eig(M));
end
plot(k,lam)
Now, you can obtain a plot only the larger eigenvalue as a function of k.
Thank you, I have only just seen your reply - I had managed to work this bit out on my own but couldnt have gotten there without your edit, thank you!

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 App Building에 대해 자세히 알아보기

질문:

2017년 2월 17일

댓글:

2017년 2월 23일

Community Treasure Hunt

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

Start Hunting!

Translated by