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!

