| Author |
Comment/Response |
Henry Lamb
|
10/03/03 7:54pm
You can do all these by adding the appropriate options to Plot.
To make the width equal to twice the height, use
AspectRatio->2
To give the plot a title, use
PlotLabel->"x sin(y)"
To label the axes, use
AxesLabel->{"x label","y label"}
Or you can do it this way.
Frame->True,
FrameLabel->{"x label","y label"}
To set the axis intersection, use
AxesOrigin->{2 Pi, 1/2}
You can see all the Plot options with
Options[Plot]
or look in the help browser.
URL: , |
|