MathGroup Archive 2005

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

Search the Archive

Re: How to suppress plot output ?

  • To: mathgroup at smc.vnet.net
  • Subject: [mg58454] Re: [mg58451] How to suppress plot output ?
  • From: Bob Hanlon <hanlonr at cox.net>
  • Date: Sun, 3 Jul 2005 03:57:05 -0400 (EDT)
  • Reply-to: hanlonr at cox.net
  • Sender: owner-wri-mathgroup at wolfram.com

plot1=Plot[x,{x,0,1},DisplayFunction->Identity];
plot2=Plot[2x,{x,0,1},DisplayFunction->Identity];
plot3=Plot[3x,{x,0,1},DisplayFunction->Identity];
plot4=Plot[4x,{x,0,1},DisplayFunction->Identity];
Show[{plot1,plot2,plot3,plot4},
    DisplayFunction->$DisplayFunction];

Alternatively, you can use DisplayTogether

Needs["Graphics`"];

DisplayTogether[
    Plot[x,{x,0,1}],
    Plot[2x,{x,0,1}],
    Plot[3x,{x,0,1}],
    Plot[4x,{x,0,1}]];


Bob Hanlon

> 
> From: Paul McHale <paul.mchale at _NO_$PAMearthlink.net>
To: mathgroup at smc.vnet.net
> Date: 2005/07/02 Sat AM 04:07:16 EDT
> Subject: [mg58454] [mg58451] How to suppress plot output ?
> 
> 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
> 
> 


  • Prev by Date: Re: How to suppress plot output ?
  • Next by Date: Re: How to suppress plot output ?
  • Previous by thread: Re: How to suppress plot output ?
  • Next by thread: Re: How to suppress plot output ?