Re: plot function
- To: mathgroup at smc.vnet.net
- Subject: [mg130299] Re: plot function
- From: debguy <johnandsara2 at cox.net>
- Date: Mon, 1 Apr 2013 01:00:51 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- Delivered-to: l-mathgroup@wolfram.com
- Delivered-to: mathgroup-newout@smc.vnet.net
- Delivered-to: mathgroup-newsend@smc.vnet.net
- References: <20130317071048.E0DE76752@smc.vnet.net> <ki6n3a$gea$1@smc.vnet.net>
I can't agree. A semicolon after plot should not stop Show. Below is straight from the book which i'm sure you've already tried looking up right ? :) plot1 = Plot[Sin[x], {x, 0, 2 \[Pi]}, DisplayFunction -> Identity]; Evaluate the cell to create the graphic. plot2 = Plot[Sin[2 x], {x, 0, 2 \[Pi]}, DisplayFunction -> Identity]; "You can see both graphs together by setting the Show option DisplayFunction to $DisplayFunction. Evaluate the expression to see the graphic." Show[plot1, plot2, DisplayFunction -> $DisplayFunction];