Question: Problems with display

Hello,
I want to display my plots in tabular form. So I have tried it with the display command and I wrote my plots in
an array.
The problem is, that I want to have two plots in the uppper left corner, but the display command ignores the
second plot.
Is there something wrong with my Array or is there another possibility to display plots in a tabular form??


L:=Array(1..2,1..3, fill=plot(x)):
L[1,1]:=plot(x^2), plot(x-1):
display(L);

Thanks for your help.

Helena

Please Wait...