Re: Multiple plots
- To: mathgroup at smc.vnet.net
- Subject: [mg7294] Re: Multiple plots
- From: tburton at cts.com (Tom Burton)
- Date: Thu, 22 May 1997 09:19:57 -0400 (EDT)
- Organization: Brahea Consulting
- Sender: owner-wri-mathgroup at wolfram.com
On 20 May 1997 02:51:58 -0400, in comp.soft-sys.math.mathematica you 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? > In[496]:= Needs["Graphics`Graphics`"] In[498]:= DisplayTogether[Plot[4Sin[x],{x,0,3}], ListPlot[Table[{x,x^2},{x,.1,2,.2}]], ListPlot[Table[{x,x^3/2},{x,.2,2,.2}]]] Say, didn't you suggest this command in this group a while back? Cheers, Tom