MathGroup Archive 1997

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

Search the Archive

Re: Multiple plots

  • To: mathgroup at smc.vnet.net
  • Subject: [mg7280] Re: Multiple plots
  • From: stupakov at slac.stanford.edu (Gennady Stupakov)
  • Date: Thu, 22 May 1997 09:18:35 -0400 (EDT)
  • Organization: Stanford Linear Accelerator Center
  • Sender: owner-wri-mathgroup at wolfram.com

In article <5lrhme$c4t at smc.vnet.net>, seanross at worldnet.att.net wrote:

> When you use the Show command to display several plots together,ie
> 
> Show[Plot[f[x],{x,x0,x1}],ListPlot[somedata],ListPlot[someotherdata]]
> 
> It shows each of the separate plots and then puts them all together at
> the end.
> 
> Does anyone know how I could get it not to display any of the individual
> plots and only show the combined plot at the end?

How about that:

Show[Plot[Sin[x],{x,1,2},DisplayFunction->Identity],
  ListPlot[{1,2,3},DisplayFunction->Identity],
  ListPlot[{2,3,4},DisplayFunction->Identity],
   DisplayFunction->$DisplayFunction]

Gennady.


  • Prev by Date: Printing
  • Next by Date: Re: Multiple plots
  • Previous by thread: Re: Multiple plots
  • Next by thread: Re: Multiple plots