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 CenterFile Exchange에서 Linear Algebra에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by