|
|
Part 8: Graphing Functions
Create a second plot by entering
graph2:=plot(cos(x),x=0..2*Pi, color=green):
To see both plots together, enter
display(graph1,graph2);
When you define and name a
plot, you can also see it immediately by adding %;
after the definition. Alter
graph1:=plot(sin(x),x=0..2*Pi,color=blue):
to read
graph1:=plot(sin(x),x=0..2*Pi,color=blue):%;
and reenter.
|
|
modules at math.duke.edu | Copyright CCP and the author(s), 1998, 1999, 2000 |