How do i solve this block matrix equation using MATLAB ?
Mostrar comentarios más antiguos
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 ?
2 comentarios
KALYAN ACHARJYA
el 15 de Ag. de 2018
G in both sides LHS & RHS??
siddhartha ganguly
el 16 de Ag. de 2018
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Matrix Indexing en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

