Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

a matrix equation problem

2 visualizaciones (últimos 30 días)
MUSTAFA ORNEK
MUSTAFA ORNEK el 30 de Nov. de 2011
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
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 comentario
Walter Roberson
Walter Roberson el 30 de Nov. de 2011
Is x a scalar or a matrix?

Respuestas (1)

Teja Muppirala
Teja Muppirala el 30 de Nov. de 2011
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.

La pregunta está cerrada.

Community Treasure Hunt

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

Start Hunting!

Translated by