Re: How to suppress plot output ?
- To: mathgroup at smc.vnet.net
- Subject: [mg58453] Re: How to suppress plot output ?
- From: Paul McHale <paul.mchale at _NO_$PAMearthlink.net>
- Date: Sun, 3 Jul 2005 03:57:04 -0400 (EDT)
- References: <da5jmc$25r$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
On Sat, 2 Jul 2005 08:36:28 +0000 (UTC), Paul McHale <paul.mchale at _NO_$PAMearthlink.net> wrote: >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? I found it: plot1=Plot[ ..., DisplayFunction->Identity ]; plot2=Plot[ ..., DisplayFunction->Identity ]; plot3=Plot[ ..., DisplayFunction->Identity ]; plot4=Plot[ ..., DisplayFunction->Identity ]; Show[ plot1, plot2, plot3, plot4, DisplayFunction->$DisplayFunction ]; How do I hide the input block. I would like the document to look more like a text book. Paul