Question

Write a Matlab function geoMult(lambda,A) which returns the geometric multiplicity of lambda if lambda is an...

Write a Matlab function geoMult(lambda,A) which returns the geometric multiplicity of lambda if lambda is an eigenvalue of the matrix A and zero otherwise.

0 0
Add a comment Improve this question Transcribed image text
Answer #1

function mult=geoMult(lambda, A)
n=size(A,1);
r= rank(A-lambda*eye(n));
mult=n-r;
end

this is code for a function I am also attaching a screenshot and some tested cases


If you need any further clarification regarding this problem feel free to comment below

Add a comment
Know the answer?
Add Answer to:
Write a Matlab function geoMult(lambda,A) which returns the geometric multiplicity of lambda if lambda is an...
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