how can i solve this eigenvalue equation?

1 visualización (últimos 30 días)
masoud jiryaei
masoud jiryaei el 30 de Sept. de 2019
Comentada: Ankit el 1 de Oct. de 2019
i have this equation: [a][w]=[b][w]
in which [a]=[1 2;5 6] and [b]=[3 6;7 8] and [w]=transpose([w1 ; w2])
how can i solve it in matlab?

Respuesta aceptada

Ankit
Ankit el 30 de Sept. de 2019
hi
a=[1 2;5 6];
b=[3 6;7 8];
[V,D] = eig(a,b);
Are you looking for something similar?
  2 comentarios
masoud jiryaei
masoud jiryaei el 30 de Sept. de 2019
yes thankyou
Ankit
Ankit el 1 de Oct. de 2019
great, then can you accept the answer?

Iniciar sesión para comentar.

Más respuestas (1)

masoud jiryaei
masoud jiryaei el 30 de Sept. de 2019
yes
thankyou

Categorías

Más información sobre Linear Algebra en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by