MathGroup Archive 2006

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

Search the Archive

Re: Combined Graphics3D with Separate PlotRange?

  • To: mathgroup at smc.vnet.net
  • Subject: [mg65230] Re: [mg65208] Combined Graphics3D with Separate PlotRange?
  • From: Bob Hanlon <hanlonr at cox.net>
  • Date: Sun, 19 Mar 2006 03:19:07 -0500 (EST)
  • Reply-to: hanlonr at cox.net
  • Sender: owner-wri-mathgroup at wolfram.com

fig1Plot=Plot[x,{x,0,10}];

fig2Plot=Plot[x^2,{x,0,5}];

Show[{fig1Plot,fig2Plot},PlotRange->{{0,5},{0,5}}];


Bob Hanlon

> 
> From: "Jung-Tsung Shen" <jushen at gmail.com>
To: mathgroup at smc.vnet.net
> Subject: [mg65230] [mg65208] Combined Graphics3D with Separate PlotRange?
> 
> 
> I have two figures that I would like to show in the same combined figure.
> However, one of them I only want to show portion of them. Is it possible? I
> tried using the option "PlotRange", but the "Show" command still showed 
the
> whole range when combined. That is,
> 
> fig1Plot=Show[fig1, PlotRange-> {small range}];
> fig2Plot=Show[fig2, PlotRange->{bigger range};
> 
> but
> 
> Show[fig1, fig2]
> 
> still plots the whole range of the figures. I think it's because in the
> "Show" command, the "PlotRange" options only change the size of the 
bounding
> box to shadow out those unwanted regions of the figures, but didn't really
> cut it off.
> 
> I would appreciate if someone could give me some pointers.
> 
> Thanks in advance.
> 
> JT
> 
> 


  • Prev by Date: Re: BinomialDistribution
  • Next by Date: Re: BinomialDistribution
  • Previous by thread: Combined Graphics3D with Separate PlotRange?
  • Next by thread: Re: Combined Graphics3D with Separate PlotRange?