How to plot polynomial function correctly?
Ältere Kommentare anzeigen
Hello, I'm trying to plot polynomial function but output is always bad. Can you help me find, what I'm missing? Thank you.
This is my code:
d = @(g)1-5*g-2.5*g.^2+6*g.^3+5*g.^4;
e = -2:1/100:2;
plot(e,d(e));
This is what I'm getting:

And this is what I want:

Akzeptierte Antwort
Weitere Antworten (1)
John D'Errico
am 24 Mär. 2020
Bearbeitet: John D'Errico
am 24 Mär. 2020
Hmm. Why does this feel like deja vu? (Answer: I just answered almost the same question for someone else, not 5 minutes ago.)
d = @(g)1-5*g-2.5*g.^2+6*g.^3+5*g.^4;
e = -2:1/100:2;
plot(e,d(e));
grid on

It looks fine to me. Whats the problem? That two programs arbitrarily chose a different set of axes to plot the same curve?
axis([-3,4.5,-1.5,4.5])

Same curve. Same plot. Very different conclusions, just by changing the axis scaling.
2 Kommentare
Adrian Brand
am 24 Mär. 2020
María Guadalupe Gama Cruz
am 24 Feb. 2021
how do you plot the x axis?
Kategorien
Mehr zu Surface and Mesh Plots finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!