Re: [Q] how to use simple notation to combine many graphicsMime-Version: 1.0
- To: mathgroup@smc.vnet.net
- Subject: [mg11429] Re: [mg11349] [Q] how to use simple notation to combine many graphicsMime-Version: 1.0
- From: jpk@max.mpae.gwdg.de
- Date: Thu, 12 Mar 1998 01:33:06 -0500
> From pguo@cse.cuhk.edu.hk Sat Mar 7 11:35:25 1998
> Date: Sat, 7 Mar 1998 02:06:26 -0500
> From: "Guo, Ping" <pguo@cse.cuhk.edu.hk>
> To: mathgroup@smc.vnet.net
> Subject: [mg11429] [mg11349] [Q] how to use simple notation to combine many
graphics
> Mime-Version: 1.0
> Content-Transfer-Encoding: 7bit
>
> I use Plot[] to creat figures
> named as gr[1], gr[2], ... gr[200], I want to combine these figure
> together.
>
> Should I write
> Show[gr[1],gr[2],....gr[200], option] ? or there is a simple way to
> write the combined figure?
>
> Thank you for help.
>
> Ping
>
Hi,
Show[Sequence @@ (Table[gr[i],{i,1,200}]),option]
?
Jens