how can i solve this eigenvalue equation?

1 回表示 (過去 30 日間)
masoud jiryaei
masoud jiryaei 2019 年 9 月 30 日
コメント済み: Ankit 2019 年 10 月 1 日
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?

採用された回答

Ankit
Ankit 2019 年 9 月 30 日
hi
a=[1 2;5 6];
b=[3 6;7 8];
[V,D] = eig(a,b);
Are you looking for something similar?
  2 件のコメント
masoud jiryaei
masoud jiryaei 2019 年 9 月 30 日
yes thankyou
Ankit
Ankit 2019 年 10 月 1 日
great, then can you accept the answer?

サインインしてコメントする。

その他の回答 (1 件)

masoud jiryaei
masoud jiryaei 2019 年 9 月 30 日
yes
thankyou

カテゴリ

Help Center および File ExchangeLinear Algebra についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by