I am to plot a quadratic equation and see how it looks . This is my code :
x=[-1:0.05:3];
f=(3*(x.^2))-(2*x);
plot(f)
xlim([-3 90]);
when i check online graphs fro this equation mine doesnt exactly match ?

1 Kommentar

Umar
Umar am 29 Jul. 2024
Bearbeitet: Umar am 29 Jul. 2024

Hi @Anvinder Singh,

Please see my response to your posted question, “ when i check online graphs fro this equation mine doesnt exactly match ?”

Melden Sie sich an, um zu kommentieren.

Antworten (2)

Star Strider
Star Strider am 29 Feb. 2016

1 Stimme

I don’t know what doesn’t ‘exactly match’, but perhaps changing your plot call to:
plot(x,f)
will help.
MUSISI
MUSISI am 11 Apr. 2024
Bearbeitet: Walter Roberson am 29 Jul. 2024

0 Stimmen

x=(1:0.5:10);
f=(x.^2+5*x+6);
plot(x,f);

Kategorien

Mehr zu Mathematics finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 29 Feb. 2016

Bearbeitet:

am 29 Jul. 2024

Community Treasure Hunt

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

Start Hunting!

Translated by