Plot without Show
- To: mathgroup at smc.vnet.net
- Subject: [mg79114] Plot without Show
- From: kitsche <kitschen at romandie.com>
- Date: Thu, 19 Jul 2007 03:25:18 -0400 (EDT)
Hello,
I often plot several functions with Plot or its siblings and at the end want to show a combined graph with all plots on it.
p1 = Plot[Sin[x],{x,0,Pi}];
p2 = Plot[Cos[x],{x,0,Pi}];
Show[p1,p2];
The output from the above are 3 plots, p1, p2 and the combined. How can I plot p1 and p2 silently, ie. without that their plot shows and only show the combined form?
Thanks Karl