Re: How to suppress plot output ?
- To: mathgroup at smc.vnet.net
- Subject: [mg58465] Re: How to suppress plot output ?
- From: "Steven Shippee" <droukas at comcast.net>
- Date: Sun, 3 Jul 2005 03:57:21 -0400 (EDT)
- References: <da5jmc$25r$1@smc.vnet.net>
- Reply-to: "Steven Shippee" <slshippee at comcast.net>
- Sender: owner-wri-mathgroup at wolfram.com
If you want to 'show' plots together you could do something like this, even combining 2D and 3D plots: Show[GraphicsArray[{Plot[x + x^2, {x, -2, 2}, PlotStyle -> Red, DisplayFunction -> Identity, AxesLabel -> TraditionalForm /@ {x, x + x^2}], Plot3D[Exp[-x^2 - y^2], {x, -2, 2}, {y, -2, 2}, AxesLabel -> TraditionalForm /@ {x, y, ""}, PlotLabel -> TraditionalForm[Exp[-(x^2 + y^2)]], DisplayFunction -> Identity]}], GraphicsSpacing -> -.1] Steven Shippee slshippee at comcast.net 360-493-8353 "Paul McHale" <paul.mchale at _NO_$PAMearthlink.net> wrote in message news:da5jmc$25r$1 at smc.vnet.net... > Hi, > > I am having difficulty forcing a suppression of output for mathematica > commands when writing documents. I want to show a multi-part graph: > > plot1=Plot[ ... ]; > plot2=Plot[ ... ]; > plot3=Plot[ ... ]; > plot4=Plot[ ... ]; > > Show[ plot1, plot2, plot3, plot4 ]; > > In the above, I get four individual plots and one final plot. How do > I suppress the first four? > > Thanks, > Paul >