| Author |
Comment/Response |
Alvin
|
10/04/02 07:57am
If you want to plot 2x^2+3x+1 for the range 0 - 10,
simply use:
Plot[2 x^2+3*x+1,{x,0,10}]
If you want to plot sin x for the range 0 to 6 pi,
use:
Plot[Sin[x],{x,0,6 Pi}]
Please note that the functions starts with a capital letter, eg. Plot, Sin, Cos... Also, make sure that your brackets for your functions are square brackets, except for the ones defining the ranges.
Use ??Plot for more information.
URL: , |
|