stason.org logo lotus


previous page: 22 What is the connection between the Mandelbrot set and Julia sets?page up: sci.fractals FAQnext page: 24 What are some Julia set facts?

23 How is a Julia set actually computed?

 Books
 TULARC
















Description

This article is from the sci.fractals FAQ, by Michael C. Taylor and Jean-Pierre Louvet with numerous contributions by others.

23 How is a Julia set actually computed?

The Julia set can be computed by iteration similar to the
Mandelbrot computation. The only difference is that the c value is
fixed and the initial z value varies.

Alternatively, points on the boundary of the Julia set can be computed
quickly by using inverse iterations. This technique is particularly
useful when the Julia set is a Cantor Set. In inverse iteration, the
equation z1 = z0^2 + c is reversed to give an equation for z0: z0 =
Âħsqrt(z1 - c). By applying this equation repeatedly, the resulting
points quickly converge to the Julia set boundary. (At each step,
either the positive or negative root is randomly selected.) This is a
nonlinear iterated function system.

In pseudocode:

z = 1 (or any value)
loop
if (random number < .5) then
z = sqrt(z - c)
else
z = -sqrt(z - c)
endif
plot z
end loop

 

Continue to:


Share and Enjoy

Bookmark this story so others can enjoy it:
  • digg
  • Reddit
  • del.icio.us
  • Furl
  • Wists

Tags

science, engineering, fractals, Mandelbrot, Julia, chaos, IFS







TOP
previous page: 22 What is the connection between the Mandelbrot set and Julia sets?page up: sci.fractals FAQnext page: 24 What are some Julia set facts?