Learn R Programming

Julia (version 1.3.5)

MandelImage: Mandelbrot Set Generator in a Square Domain

Description

'MandelImage' returns two dimensional array representing escape values from on the square region in complex plane. Escape values (which measures the number of iteration before the lenght of the complex value reaches to 2.)

Usage

MandelImage(imageN, centre, L)

Value

Returns a matrix.

Arguments

imageN

Number of pixels to equally space division of one side if the square region.

centre

A complex number that determines the centre of the square region.

L

A side length of the square region on the complex plane.

Author

Mehmet Suzen <mehmet.suzen@physics.org>

Details

Mandelbrot set is defined as the set of initial complex values where the z = z^2 +z_0 does not diverge to infinity. Initial value for the map is taken to be zero and z_0 is the complex coordinate.

References

The Fractal Geometry of Nature, Benoit B. Mandelbrot, W.H.Freeman & Co Ltd (18 Nov 1982)

See Also

JuliaImage

Examples

Run this code
# png image 
  imageN <- 5; # increase this to see image
  centre <- 0.0
  L <- 4.0
  image<-MandelImage(imageN,centre,L);
  #file <- "mandelbrot1.png"
  # writePNG(image,file); # possible visualisation
# Closer lookup to set
  imageN <- 5;
  centre <- -0.5
  L <- 2.0
  image<-MandelImage(imageN,centre,L);
  # file <- "mandelbrot.png"
  #writePNG(image,file); # possible visualisation

Run the code above in your browser using DataLab