a matrix equation problem

Could you please help me to write this equation code
I have two matrix A, B. These matrices are square matrix 4*4,6*6 or etc and known. My equation is det(A-B*x^2)=0 How will I find x values

댓글 수: 1

Walter Roberson
Walter Roberson 2011년 11월 30일
Is x a scalar or a matrix?

답변 (1개)

Teja Muppirala
Teja Muppirala 2011년 11월 30일

0 개 추천

If B is invertible:
x = sqrt(eig(B\A))
Reason: det(A-B*x^2) = 0
implies that
det(B\A-I*x^2) = 0
If B is not invertible, this won't work.

이 질문은 마감되었습니다.

질문:

2011년 11월 30일

마감:

2021년 8월 20일

Community Treasure Hunt

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

Start Hunting!

Translated by