How to graph a quadratic function f(x,y) - parabola
3 ビュー (過去 30 日間)
古いコメントを表示
The intention is to plot the next equation: 0==-(x+y).^2+6540.*(y.*2.6284 - x.*2.187) and get the following parabola:

I've tried several options, but I'm not able to get the parabola, what could I do?
0 件のコメント
採用された回答
Walter Roberson
2017 年 5 月 8 日
f = @(x,y) (x+y).^2 + 6540 * (y * 2.6284 - x * 2.187);
fimplicit(f, [-5000, 20000, -20000, 5000])
0 件のコメント
その他の回答 (1 件)
参考
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!