MathGroup Archive 1997

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

Search the Archive

Re: Multiple plots

  • To: mathgroup at smc.vnet.net
  • Subject: [mg7282] Re: Multiple plots
  • From: Dick Zacher <dick at loc3.tandem.com>
  • Date: Thu, 22 May 1997 09:19:13 -0400 (EDT)
  • Organization: Tandem Computers
  • 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?

This is not pretty, but it works:

Show[Plot[f[x],{x,x0,x1},DisplayFunction->Identity],
  ListPlot[somedata,DisplayFunction->Identity],
  ListPlot[someotherdata,DisplayFunction->Identity],
  DisplayFunction->$DisplayFunction]

-- 
-----------------------------
Dick Zacher                    
Performance Engineering Dept., Tandem Computers
zacher_dick at tandem.com     phone: 408-285-5746     fax:   408-285-7079


  • Prev by Date: PS printing problems: MMA V3.0 and Macs
  • Next by Date: Re: Multiple plots
  • Previous by thread: Re: Multiple plots
  • Next by thread: Re: Multiple plots