Solution of equation and graph with matlab

17 views (last 30 days)
Lucas Calado
Lucas Calado on 8 Jul 2021
Answered: VBBV on 27 Oct 2022
Hi,
How to solve this question?
Thank's!

Answers (2)

Kapil Gupta
Kapil Gupta on 9 Jul 2021

VBBV
VBBV on 27 Oct 2022
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])

Tags

Community Treasure Hunt

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

Start Hunting!