Re: PlotRange
- To: mathgroup at smc.vnet.net
- Subject: [mg103353] Re: PlotRange
- From: Bill Rowe <readnews at sbcglobal.net>
- Date: Thu, 17 Sep 2009 06:19:34 -0400 (EDT)
On 9/16/09 at 5:47 AM, l.balzano at gmail.com (Luigi B) wrote:
>I am generating some 2D images with MatrixPlot and using the option
>PlotRange->{All,All,All}. I know the range that the plotting routine
>is using for the x- and y- directions. The values of the points
>(i.e. the z- scale) is changing every image. After plotting, I would
>like to know what are the values Mathematica has used. Any help?
Here is an example
data = RandomReal[1, {5, 5}];
plot = MatrixPlot[data]
In[6]:= PlotRange /. FullOptions[plot]
Out[6]= {{0., 5.}, {0., 5.}}