MathGroup Archive 2005

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

Search the Archive

Re: Re: How to suppress plot output ?

  • To: mathgroup at smc.vnet.net
  • Subject: [mg58492] Re: [mg58453] Re: How to suppress plot output ?
  • From: Bob Hanlon <hanlonr at cox.net>
  • Date: Mon, 4 Jul 2005 02:24:13 -0400 (EDT)
  • Reply-to: hanlonr at cox.net
  • Sender: owner-wri-mathgroup at wolfram.com

To hide the input block use the menu command 

Cell/Cell Properties/Cell Open    (checked to unchecked)


Bob Hanlon

> 
> From: Paul McHale <paul.mchale at _NO_$PAMearthlink.net>
To: mathgroup at smc.vnet.net
> Date: 2005/07/03 Sun AM 03:57:04 EDT
> Subject: [mg58492] [mg58453] Re: How to suppress plot output ?
> 
> 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
> 
> 
> 


  • Prev by Date: Re: a question about the UnitStep function
  • Next by Date: Re: how to find n in expression x^n using a pattern?
  • Previous by thread: Re: How to suppress plot output ?
  • Next by thread: Re: How to suppress plot output ?