Re: combining graphics
- To: mathgroup at smc.vnet.net
- Subject: [mg24327] Re: combining graphics
- From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
- Date: Sun, 9 Jul 2000 04:52:36 -0400 (EDT)
- Organization: Universitaet Leipzig
- References: <8k3lbq$3ko@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Hi, this was ask one million times before and the answer is always the same Block[{$DisplayFunction = Identity}, a = Plot[x, {x, 0, 1}]; b = Plot[2 x, {x, 0, 1}] ] Show[a, b]; Regards Jens Robert wrote: > > how can i omit the plot of curves before combining them with Show[.]? > > e.g. > > a=Plot[x,{x,0,1}]; > b=Plot[2 x,{x,0,1}]; > Show[a,b]; > > the output on the screen gets rather complex if a lot of > Plot[.]-commands are used and since i'm only interested in the final > Show[.]-output, i'd like to omitt the rest, is there a way to do this? > > thanks, robert