mandelbrot

mandelbrot(x0 = -2.5, x1 = 1, y0 = -1.5, y1 = 1.5, steps = 100,
  maxit = 100, tol = 1e-06)

Arguments

x0

starting point in real axis.

x1

end point in real axis.

y0

starting point in imaginary axis.

y1

end point in imaginary axis.

steps

number of points in range.

maxit

maximum number of iterations.

tol

tolerance.