I'm trying to write a procedure which will (among other things) create a list of plot strcuctures and display them. For example: testplot:=proc(n) local i,P; for i from 1 to n do P[i]:=plot(x,x=2*i..2*i+1); end do; plots[display]([seq(P[i],i=1..n)]); end proc; But this doesn't work; apparently the plot structures I'm trying to create in the "P[i]:=plot..." line are somehow invalid. How can I make this work? Thanks, Alasdair

Please Wait...