how can i solve simultaneous matrix equations?
Mostrar comentarios más antiguos
I hvae to solve the simultaneous matrix equations
X*A=0 and X*e=1 where X is a row vector of finite dimension 1Xu and e =ones(u1,1)
I tried the following How can I Solve simultaneous matrix equation X*A=0 and X*e=1 where X a row vector ,e coloumn vector with all entries one.? i have tried
x=sym('x',[1 u1])
e=ones(u1,1)
eqn=[x*A==0 ,x*e==1]
solx=solve(eqn,x)
but the answer i am getting is a structure but i need it as a matrix. can any one help me?
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Mathematics 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!