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일

2 개 추천

hi
a=[1 2;5 6];
b=[3 6;7 8];
[V,D] = eig(a,b);
Are you looking for something similar?

댓글 수: 2

yes thankyou
Ankit
Ankit 2019년 10월 1일
great, then can you accept the answer?

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

카테고리

도움말 센터File Exchange에서 Linear Algebra에 대해 자세히 알아보기

태그

질문:

2019년 9월 30일

댓글:

2019년 10월 1일

Community Treasure Hunt

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

Start Hunting!

Translated by