Solution of equation and graph with matlab
26 ビュー (過去 30 日間)
古いコメントを表示
Hi,
How to solve this question?
Thank's!
0 件のコメント
回答 (2 件)
Kapil Gupta
2021 年 7 月 9 日
I assume you want to solve and plot an equation. The following links have similar queries, you can check these out:
VBBV
2022 年 10 月 27 日
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])
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!