Re: How to suppress plot output ?
- To: mathgroup at smc.vnet.net
- Subject: [mg58455] Re: [mg58451] How to suppress plot output ?
- From: "David Annetts" <davidannetts at aapt.net.au>
- Date: Sun, 3 Jul 2005 03:57:07 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
Hi Paul,
> 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?
Shouldn't be difficult ....
Did you try
plot_i = Plot[ ...., DisplayFunction->Identity];
For any for the first four?
You can also try
DisplayTogether[
{Plot[], Plot[]},
];
Regards,
Dave.