Mandelbrot set: Difference between revisions

Content deleted Content added
Majow (talk | contribs)
m →‎Normalized Iteration Count, Distance Estimation and Mercator Maps: The Mandelbrot set is printed with smooth colors only.
Majow (talk | contribs)
Line 7,526: Line 7,526:
===Normalized Iteration Count, Distance Estimation and Mercator Maps===
===Normalized Iteration Count, Distance Estimation and Mercator Maps===
The Mandelbrot set is printed with smooth colors.
The Mandelbrot set is printed with smooth colors.
The ''e^(-|z|)-smoothing'', ''normalized iteration count'' and ''exterior distance estimation'' algorithms are used with NumPy and complex matrices (see Francisco Garcia, Angel Fernandez, Javier Barrallo, Luis Martin: [http://math.unipa.it/~grim/Jbarrallo.PDF ''Coloring Dynamical Systems in the Complex Plane''] and Mikael Hvidtfeldt Christensen: [http://blog.hvidtfeldts.net/index.php/2011/09/distance-estimated-3d-fractals-v-the-mandelbulb-different-de-approximations ''Distance Estimated 3D Fractals (V): The Mandelbulb & Different DE Approximations'']).
The ''e^(-|z|)-smoothing'', ''normalized iteration count'' and ''exterior distance estimation'' algorithms are used with NumPy and complex matrices (see Javier Barrallo & Damien M. Jones: [http://www.mi.sanu.ac.rs/vismath/javier/index.html ''Coloring Algorithms for Dynamical Systems in the Complex Plane''] and Mikael Hvidtfeldt Christensen: [http://blog.hvidtfeldts.net/index.php/2011/09/distance-estimated-3d-fractals-v-the-mandelbulb-different-de-approximations ''Distance Estimated 3D Fractals (V): The Mandelbulb & Different DE Approximations'']).
Finally, the Mandelbrot set is also printed with a scatter plot which will be misused later for a nice effect.
Finally, the Mandelbrot set is also printed with a scatter plot that is later misused for zoom images.
<lang python>import numpy as np
<lang python>import numpy as np
import matplotlib.pyplot as plt
import matplotlib.pyplot as plt