Plotting a graph with a confusing equation
Ältere Kommentare anzeigen
I am given the equation xxx+x*x+2x between -pi and pi, but when Matlab says I have to perform elementwise multiplication:
x = linspace(-pi,pi,100);
y= x.*x.*x+x.*x+2.*x;
plot(y)
However, the graphs for xxx+x*x+2x and x.*x.*x+x.*x+2.*x look different (xxx+x*x+2x is steeper), is there another way to do this?
For reference, here are the two graphs
y=xxx+x*x+2x:

y=x.*x.*x+x.*x+2.*x

Thanks.
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Networks finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

