Question
Please answer these Matlab questions when able. Thanks.

4. Laboratory Problem Description In this laboratory you are required to find eigenvalue and eigenvectors for A in the follow
0 0
Add a comment Improve this question Transcribed image text
Answer #1

`Hey,

Note: Brother in case of any queries, just comment in box I would be very happy to assist all your queries

4)

clc
clear all
close all
A=[17,2,3,4;5,6,7,8;9,10,11,12;13,14,15,16];
[X,D]=eig(A);
Vec=diag(D);
for i=1:4
fprintf('For %d eigen vector\n',i);
disp('A*eigen vector');
disp(A*X(:,i))
disp('eigenvalue*X=');
Vec(i)*X(:,i)
end

MATLAB R2014a HOME PLOTS EDITOR Find Files Compare Print Comment Go To New Open Save Breakpoints Run Run and Advance Advance

b)

clc
clear all
close all
A=[2,3,1;-1,2,3;0,1,2];
disp('Characteristic polynomial is');
syms L
simplify(det(A-L*eye(3)))

MATLAB R2014a HOME PLOTS EDITOR Find Files Compare ▼ Comment Print new open Save Indent Breakpoints Run Run and Advance Advan

2)

clc
clear all
close all
A=[3,2,0;1,0,3;1,2,3];
[X,D]=eig(A);
disp('Eigen values are')
disp(diag(D));
disp('Eigen vectors are')
disp(X);

MATLAB R2014a HOME EDITOR Find Files Compare ▼ Comment Print New Open Save Breakpoints Run Run and Advance Advance Run and In

Kindly revert for any queries

Thanks.

Add a comment
Know the answer?
Add Answer to:
Please answer these Matlab questions when able. Thanks. 4. Laboratory Problem Description In this laboratory you...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT