| Author |
Comment/Response |
Bill Simpson
|
10/25/12 1:51pm
In the olden days Plot[] had a side effect of displaying the graphic. So things like
x=4;
Plot[y^2,{y,-2,2}];
z=3;
would show the plot.
Now days if Plot has a trailing semicolon you see nothing. So do this
x=4;
Print[Plot[y^2,{y,-2,2}]];
z=3;
and you should see your plot
URL: , |
|