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

조회 수: 4 (최근 30일)
Fernando Poveda
Fernando Poveda 2017년 5월 8일
답변: Khairul Azam 2020년 10월 19일
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?

채택된 답변

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

추가 답변 (1개)

Khairul Azam
Khairul Azam 2020년 10월 19일
i tided to alive

카테고리

Help CenterFile Exchange에서 Mathematics에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by