I am plotting the logistic map fractal along the X/Y axis the
following and seeing that at some point with a slight change to a more
granular picture the whole plotting diagram overflows and displays
nothing..... :
X axis range : 3.8540779627 .. 3.85407796330
Y axis range : .13566 .. .13568
changing the Y axis min to just .13567 blows the diagram.. does anyone
have a clue why this happens or better yet how to fix this problem so
I can get very granular zoomed in views of the logistic map fractal
without the rendering breaking ?
Thanks,
Jim
That might happen because of the OpenGL graphics driver. The following plot
setup usually corrects that:
> plotsetup(gdi);
Alec Mihailovs
http://webpages.shepherd.edu/amihailo/
Actually, that didnt do the trick...it changed the visual somewhat,
but you can see here what I was describing above...a minor more
granular change from .13567 takes it out of whack...any other ideas ?
Here are the pics:
http://www.pbase.com/jim_fukuyama/inbox
It's hard to tell where the problem is without seeing the code. Another
suggestion is to change the number of digits - try something like
> Digits:=14;
or more (but not much more :-)
Alec
It's because the rendering engine uses limited precision. A work-around
is to transform the data to more reasonable intervals before plotting,
e.g. with (x,y) -> [10^8*(x-3.8540779627), 10^5*(y- .13566)].
Robert Israel isr...@math.ubc.ca
Department of Mathematics http://www.math.ubc.ca/~israel
University of British Columbia
Vancouver, BC, Canada V6T 1Z2
Alec