Skip to main content

Mandelbrot Set

What is mandelbrot

  • a fractal-like object made by this recurrent function: z[n+1] <- z[n] + c
  • c is a complex number, z starts from 0
  • we can map complex number to vectors quite easily, yet it's important to keep in mind that arithmetic operations have to be managed in the complex field
  • color represents a number where the iteration at given point stopped
  • Wikipedia

Source