Solution of equation and graph with matlab

Answers (2)

syms F2(x) x y
F2 = x + (800*1e4)/(2*x*y) + 250*y;
sol = solve(F2,[x y]);
sol.x
ans = 
sol.y
ans = 
fimplicit(F2,[-50 10 -50 50])

Categories

Find more on Programming in Help Center and File Exchange

Tags

Asked:

on 8 Jul 2021

Answered:

on 27 Oct 2022

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!