MathGroup Archive 2000

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

Search the Archive

Re: combining graphics

  • To: mathgroup at smc.vnet.net
  • Subject: [mg24347] Re: [mg24276] combining graphics
  • From: Hugh Walker <hwalker at gvtc.com>
  • Date: Sun, 9 Jul 2000 04:52:52 -0400 (EDT)
  • Sender: owner-wri-mathgroup at wolfram.com

robert.schuerhuber at gmx.at writes:

=============
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?
==============
Hello Robert. This technique works:

a = Plot[x, {x, 0, 1}, DisplayFunction -> Identity];
b = Plot[2 x, {x, 0, 1}, DisplayFunction -> Identity];
Show[{a, b}, DisplayFunction -> $DisplayFunction];

Cheers!

    ==

Hugh Walker
Gnarly Oaks




  • Prev by Date: Re: difference equation
  • Next by Date: Re: Contour labeling
  • Previous by thread: Re: combining graphics
  • Next by thread: Re: combining graphics