sending a list of plots to draw2d



Mahdiyar Noorbala <mahdiarnt at gmail.com> writes:
> The function plot2d accepts lists of plots, like:
> plot2d(plotlist,[x,0,1]);
> where
> plotlist:[x^2,x^3];
>
> Is there a way to do the same with draw2d?

With the version of draw included in Maxima 5.22.1,
I guess this should work:

draw2d(makelist(explicit(ex,x,0,1), ex, plotlist));

     Mark