Plotting a graph with a confusing equation

1 vue (au cours des 30 derniers jours)
Millie Jones
Millie Jones le 24 Mar 2020
Commenté : John D'Errico le 24 Mar 2020
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.

Réponse acceptée

John D'Errico
John D'Errico le 24 Mar 2020
Modifié(e) : John D'Errico le 24 Mar 2020
How to lie with statistics. ;-) (Yes, that is the name of a little book I read long ago.)
My point is, not that you or anyone is intentionally trying to lie here, but that by changing the axis scaling, it is easy to make one curve look completely unalike another, or to convince someone that something looks very different from what they might otherwise conclude.
Yes, you definitely need to use element-wise multiplication. But then you need to use plot correctly!
x = linspace(-pi,pi,100);
y = x.*x.*x+x.*x+2.*x;
% plot(y) % WRONG!!!!
plot(x,y) % correct
This looks as I would expect. However, now lets change the auto-scaling that MATLAB uses, into the apparent scaling used in your first plot.
axis([-9,9,-7,7])
grid on
Identically the same plot, but it certainly looks different. You were rushing to draw conclusions about something, based on nothing more significant than an axis scaling.
The point being to always beware of the axes on a plot, don't jump to conclusions.
As I said, this is a textbook case of how creative plotting can result in an interesting set of conclusions. Now, just imagine someone actually wanted to convince someone of anything they want? Again, it is amazingly easy to do. Just manipulate the plots to look as you want them to look. ;-) Sad, but true. And there are too many people in this world willing to do exactly that.
  2 commentaires
Millie Jones
Millie Jones le 24 Mar 2020
Haha! I'm not a lier, just clumsy! Thanks so much for your help, my graph now looks like the graph I inteneded it to be :)
John D'Errico
John D'Errico le 24 Mar 2020
Oh, I know that you are not a liar. That part was never in question. :)
The point really is important though, especially in these days of disinformation. Do you see how easy it is to create a completely different impression of something, merely by how one decides to represent the information?
Anyway, I'm glad this fixed it for you.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by