How do i solve this block matrix equation using MATLAB ?
이전 댓글 표시
I have this equation
[A B;C 0]*[G;H]=[G*Am;Cm]
which is needed to be solved for G and H , this equation can be written as
[G;H]=[A B;C 0]*inv([A B;C 0]*[A B;C 0]')*[G*Am;Cm]
and the matrices are given as
A=[0 1;1 -2],B=[0;1],C=[1 0],Am=[0 1;-1 0],Cm=[1 0.5]
dimension of G should be 2X2 and H 1X2
How to write a code to solve for G and H ?
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

