MathGroup Archive 1998

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: [Q] how to use simple notation to combine many graphics



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




  • Prev by Date: Re: In-reply-to: <199803040639.BAA09722@smc.vnet.net.>
  • Next by Date: RE: [Q] how to use simple notation to combine many graphics
  • Prev by thread: Re: [Q] how to use simple notation to combine many graphics
  • Next by thread: RE: [Q] how to use simple notation to combine many graphics