Why does the PlotRange option in
list=Table[{x,Exp[Sqrt[x]]},{x,0,25}];
ListLogLogPlot[list,PlotRange->{0,10},Joined->True]
not work although there is no error-output? The same holds for ListLogLogPlot.
|
Why does the
not work although there is no error-output? The same holds for |
|||
|
|
|
This is because you gave 0 as the lower limit and $\log (0)=-\infty$. If you look at the implementation of
So an extreme plot range will automatically be converted to something more "reasonable" that displays the plot. However, I do agree that a warning should be included. For instance, if you use -∞ as a plot range in
If you want to set the limits for the axes from within
|
|||
|
|
|
I've seen problems with this before but can't find the reference right now. So here is a solution:
or
The problem of course could be called a bug, but in some sense it's also understandable that the plot range specification breaks when you put in a value of |
|||
|
|