How to graph a quadratic function f(x,y) - parabola

3 Ansichten (letzte 30 Tage)
Fernando Poveda
Fernando Poveda am 8 Mai 2017
Beantwortet: Khairul Azam am 19 Okt. 2020
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?

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 8 Mai 2017
f = @(x,y) (x+y).^2 + 6540 * (y * 2.6284 - x * 2.187);
fimplicit(f, [-5000, 20000, -20000, 5000])

Weitere Antworten (1)

Khairul Azam
Khairul Azam am 19 Okt. 2020
i tided to alive

Kategorien

Mehr zu Mathematics finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by