 
 
 
 
 
 
RE: PlotRange
- To: mathgroup at smc.vnet.net
- Subject: [mg48454] RE: [mg48452] PlotRange
- From: "David Park" <djmp at earthlink.net>
- Date: Mon, 31 May 2004 00:13:29 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
Bruce,
I don't know if I understand your question but do you mean the following?
FindRoot[Sin[x] == 0.5, {x, 0.5}]
{x -> 0.523599}
Plot[Sin[x], {x, 0, Pi/2}, PlotRange -> 
    {{0, 1}, {0, 1}}, AxesOrigin -> 
    {0.523599, 0.5}]; 
David Park
djmp at earthlink.net
http://home.earthlink.net/~djmp/ 
From: Bruce W. Colletti [mailto:bcolletti at compuserve.com]
To: mathgroup at smc.vnet.net
Re Mathematica 5.0.1.0.
Using PlotRange, can we plot two graphs in different quadrants?  For 
instance:
    Plot[Sin@x,{x,-2Pi,2Pi},PlotRange->{{.5,1},{.5,1}}]
shows in display area Quadrant 1 while:
    Plot[Sin@x,{x,-2Pi,2Pi},PlotRange->{{0,.5},{0,.5}}]
shows in Quadrant 3. 
When entered as shown above, each image is a separate graphics object.  
But is there a way (without using Graphics Array) to combine them into 
one object whose Quadrants 1 and 3 are filled? 
Thanks.
Bruce

