The Mathematica Programming Language

Plotting Example Program


Click below to go directly to a specific section:
Description | Source Code | Sample Run | Program Notes


Description

This program plots arc-tangent on the same axes as it's derivative, plotting each in a different color.


Source Code

Plot[{ArcTan[x],ArcTan'[x]},{x,-10,10},
							
      PlotStyle->{RGBColor[0,0,1],RGBColor[1,0,0]}];

Sample Run


Program Notes

This program was tested and executed using Mathematica 3.0


[Back] [Home]

Last modified: 01:51 PM on 12/10/1999