question about linear simultaneous solutions
Info
This question is closed. Reopen it to edit or answer.
Show older comments
I want to solve a system of linear simultaneous solutions but I don't want to turn into the matrix form. Is there any way to do that? For example,
x+y=1, x*y=10
how should I put these into mathlab
Answers (1)
Andrei Bobrov
on 10 Mar 2012
syms x y
slv = solve(x+y-1,x*y-10,x,y)
This question is closed.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!