Solving Matrix Equations With Unknown at Both Sides
8 views (last 30 days)
Show older comments
Hello,
How can I solve matrix equations in Matlab? Consider following case:

Thank you
0 Comments
Answers (3)
Matt J
on 26 Jun 2023
T1=optimvar('T1');
T2=optimvar('T2');
F2=optimvar('F2');
prob=eqnproblem;
prob.Equations.eqn=[1 -0.5 4;-0.5 2 0; 4 0 3]*[T1;0;T2]==[4;F2;5];
sol=solve(prob)
0 Comments
Torsten
on 26 Jun 2023
syms T1 T3 F2
eqns = [1 -0.5 4;-0.5 2 0; 4 0 3]*[T1;0;T3]==[4;F2;5];
solve(eqns)
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!