How to solve a system of linear equations ?
Show older comments
Hi,how can i solve this system in Mupad and get only the positive real solutions.
x + y + z = 50
5x + y + 0.1z = 50
Thank You :)
Accepted Answer
More Answers (1)
Azzi Abdelmalek
on 5 Mar 2013
sol=[1 1 1;5 1 0.1]\[50;50]
2 Comments
Sudo
on 6 Mar 2013
Youssef Khmou
on 6 Mar 2013
hi :
a=[1 1 1;5 1 0.1]
b=[50 50]';
sol=pinv(a)*b; %Pseudo inverse
Categories
Find more on Numeric Solvers in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!