Solution of equation and graph with matlab
Show older comments
Hi,

How to solve this question?
Thank's!
Answers (2)
Kapil Gupta
on 9 Jul 2021
0 votes
I assume you want to solve and plot an equation. The following links have similar queries, you can check these out:
1 Comment
Lucas Calado
on 9 Jul 2021
syms F2(x) x y
F2 = x + (800*1e4)/(2*x*y) + 250*y;
sol = solve(F2,[x y]);
sol.x
sol.y
fimplicit(F2,[-50 10 -50 50])
Categories
Find more on Programming in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
