mandelbrot, a Python code which generates an image of the Mandelbrot set.
The Mandelbrot set is a set of points C in the complex plane with the property that the iteration
z(n+1) = z(n)^2 + cremains bounded.
All the points in the Mandelbrot set are known to lie within the circle of radius 2 and center at the origin.
To make a plot of the Mandelbrot set, one starts with a given point C and carries out the iteration for a fixed number of steps. If the iterates never exceed 2 in magnitude, the point C is taken to be a member of the Mandelbrot set.
The information on this web page is distributed under the MIT license.
mandelbrot is available in a C version and a C++ version and a Fortran90 version and a MATLAB version and an Octave version and a Python version.
python_plots, a Python code which uses plotting to illustrate a mathematical structure, such as an iterative map, a fractal, a curve or surface.