Create Plots Using Mathematica
Simple Plots
With Mathematica, you can effortlessly create simple plots.
![[Graphics:Images/index2_gr_1.gif]](http://library.wolfram.com/howtos/plots/Images/index2_gr_1.gif)
![[Graphics:Images/index2_gr_2.gif]](http://library.wolfram.com/howtos/plots/Images/index2_gr_2.gif)
Dozens of options are available to customize plots. In this example, the Frame option
is used to draw a box around the plot.
![[Graphics:Images/index2_gr_4.gif]](http://library.wolfram.com/howtos/plots/Images/index2_gr_4.gif)
![[Graphics:Images/index2_gr_5.gif]](http://library.wolfram.com/howtos/plots/Images/index2_gr_5.gif)
Parametric Plots
Besides plotting standard linear and nonlinear equations in x and y,
Mathematica can easily plot parametric curves.
![[Graphics:Images/index2_gr_7.gif]](http://library.wolfram.com/howtos/plots/Images/index2_gr_7.gif)
![[Graphics:Images/index2_gr_8.gif]](http://library.wolfram.com/howtos/plots/Images/index2_gr_8.gif)
Combining Plots
Mathematica makes it easy to create plots with multiple functions. Just as easily
as it can plot one equation, Mathematica can plot several equations simultaneously.
![[Graphics:Images/index2_gr_10.gif]](http://library.wolfram.com/howtos/plots/Images/index2_gr_10.gif)
![[Graphics:Images/index2_gr_11.gif]](http://library.wolfram.com/howtos/plots/Images/index2_gr_11.gif)
Plotting Sets of Data
The ListPlot command allows you to easily plot sets of data, gathered or
generated from a wide variety of sources. Here is a table of sin(x)
values with "noise" added.
![[Graphics:Images/index2_gr_14.gif]](http://library.wolfram.com/howtos/plots/Images/index2_gr_14.gif)
Here is a plot of the data.
![[Graphics:Images/index2_gr_15.gif]](http://library.wolfram.com/howtos/plots/Images/index2_gr_15.gif)
![[Graphics:Images/index2_gr_16.gif]](http://library.wolfram.com/howtos/plots/Images/index2_gr_16.gif)
Three-Dimensional Plots
Graphing functions of two variables in three dimensions can be done easily using
Plot3D.
![[Graphics:Images/index2_gr_18.gif]](http://library.wolfram.com/howtos/plots/Images/index2_gr_18.gif)
![[Graphics:Images/index2_gr_19.gif]](http://library.wolfram.com/howtos/plots/Images/index2_gr_19.gif)
As with all of Mathematica's plotting functions, you can add options to control how your plots look. In this example, options are used to show the function with a finer grid and with the axes suppressed.
![[Graphics:Images/index2_gr_21.gif]](http://library.wolfram.com/howtos/plots/Images/index2_gr_21.gif)
![[Graphics:Images/index2_gr_22.gif]](http://library.wolfram.com/howtos/plots/Images/index2_gr_22.gif)
|