Re: [Q] how to use simple notation to combine many graphics
- To: mathgroup@smc.vnet.net
- Subject: [mg11391] Re: [Q] how to use simple notation to combine many graphics
- From: Allan Hayes <hay@haystack.demon.co.uk>
- Date: Sun, 8 Mar 1998 20:13:15 -0500
- References: <6dqoa5$rbu@smc.vnet.net>
Guo, Ping (1ùÆ*) wrote:
>
> 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?
If what you want is to see each gr[i] and then combine them but avoid
the
typing then
Show[Table[gr[i],{i,200}], option]
works.
If you are only interested in the final combination then
Plot[{expr1, expr2, ...,expr200},..] or something like
Plot[Evaluate[Table[expr[i],{i,1,200}] ...]
works
--
Allan Hayes
Training and Consulting
Leicester, UK
hay@haystack.demon.co.uk
http://www.haystack.demon.co.uk
voice: +44 (0)116 271 4198
fax: +44 (0)116 271 8642