| > | plot(sin(x),x=0..10,0..1,color=blue, thickness=1,labels=["foo","y"], title="my first plot"); |
| > | plot([sin(t),cos(t),exp(t)],t=-5..5,-1..2, color=[red,green,blue]); |
| > | #parametric curve plot([cos(t),sin(t),t=0..2*Pi],scaling=constrained); |
| > | # superimposing multiple plots p1:=plot([cos(t),sin(t),t=0..2*Pi]): p2:=plot([1.5*cos(t),1.5*sin(t),t=0..2*Pi], color=blue): plots[display](p1,p2,scaling=constrained); |
| > | plots[display]( seq( plot([r*cos(t),r*sin(t),t=0..2*Pi]), r=[1,2,3,4,5] ) ); |
| > | plot([ [1,2],[4,4],[5,-1] ], style=point, view=[-5..5,-5..10],scaling=constrained); |
| > | plot( [ seq( [i,i^2],i=1..10 ) ] ,style=point,symbolsize=50); |
| > | ?plot |
| > |