how can i solve this eigenvalue equation?

2 Ansichten (letzte 30 Tage)
masoud jiryaei
masoud jiryaei am 30 Sep. 2019
Kommentiert: Ankit am 1 Okt. 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?

Akzeptierte Antwort

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

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

masoud jiryaei
masoud jiryaei am 30 Sep. 2019
yes
thankyou

Kategorien

Mehr zu Linear Algebra finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by