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!