MathGroup Archive 1997

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

Search the Archive

Re: Multiple plots

  • To: mathgroup at smc.vnet.net
  • Subject: [mg7311] Re: Multiple plots
  • From: Lars Hohmuth <larsh>
  • Date: Fri, 23 May 1997 01:41:44 -0400 (EDT)
  • Organization: Wolfram Research Inc.
  • Sender: owner-wri-mathgroup at wolfram.com

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?

One way to do this is setting the DisplayFunction option to Identity in
the individual plots and setting it back to the default value in Show[]

For example:

Show[Plot[Sin[x],{x,0,10},DisplayFunction->Identity],
  ListPlot[Table[x/10,{x,0,10}],DisplayFunction->Identity],
  DisplayFunction->$DisplayFunction]


Lars Hohmuth
Wolfram Research


  • Prev by Date: Importing graphics
  • Next by Date: Re: Font-Installation ?
  • Previous by thread: Re: Multiple plots
  • Next by thread: Re: Multiple plots