Julia - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Fractals[EscapeTime]

  

Julia

  

Julia fractal generator

 

Calling Sequence

Parameters

Options

Description

Examples

Compatibility

Calling Sequence

Julia( n, zbl, zur, zc )

Julia( n, zbl, zur, zc, opts )

Parameters

n

-

positive integer; specifies the dimensions of the square Array output

zbl

-

complex(realcons); the bottom left corner of a box in the complex plane

zur

-

complex(realcons); the upper right corner of a box in the complex plane

zc

-

complex(realcons); the point in the complex plane which determines the particular Julia set

opts

-

(optional) keyword options of the form opt=value where opt and value are described below

Options

• 

output : keyword option of the form output=value where value is a name or list of names denoting the returned Array image(s). The accepted names are layer1, layer2, color, or raw. The default value is color.

• 

iterationlimit : keyword option of the form iterationlimit=value where value is a positive integer specifying the number of iterations the formula is applied. The default value is 25.

• 

cutoff : keyword option of the form cutoff=value where value is positive and of type realcons. The iterative process is stopped for each complex input point when the absolute value exceeds the cutoff value. The default value is 100.0.

• 

container : An n-by-n-by-2 Array with datatype=float[8] and order=Fortran_order used in-place to store the raw data.

Description

• 

The Julia command generates Array images which provide a visualization of a Julia set. The entries of the image are shaded according to the behavior of complex input points under a particular iterative rational map characterized by zc a given complex parameter value. For each complex input point z[0] a sequence of points z[i] are computed until abs(z[i]) exceeds the cutoff value (ie. escapes).

zi=zi12+zc

• 

For each entry point in the designated complex box the iterative process is repeated until either the iteration limit or the cutoff value is exceeded.

• 

The 2-D grayscale Array image returned by supplying the option output=layer1 contains data denoting the number of iterations required for each entry to escape. The grayscale image returned by supplying the option output=layer2 contains the absolute values of the final values for entries which escape. For either layer the real data is scaled to 0.0 .. 1.0 before being returned as an image.

• 

The 3-D color Array image returned by supplying the option output=color contains data where the three layers corresponding to red, green, and blue have been computed using the raw escape data.

• 

The 3-D Array returned by supplying the option output=raw contains the unscaled data of layer1 and layer2. This Array can be used to generate a customized color image using the Colorize command.

Examples

withFractals:-EscapeTime

BurningShip,Colorize,HSVColorize,Julia,LColorize,Lyapunov,Mandelbrot,Newton

(5.1)

withImageTools:

bl,ur,c2.01.5I,2.0+1.5I,0.8+0.156I:

MJulia500,bl,ur,c

EmbedM

EmbedJulia500,bl,ur,c,output=layer1

EmbedJulia500,2.01.5I,2.0+1.5I,11+sqrt520.7I,iterationlimit=250

EmbedJulia200,bl,ur,c,iterationlimit=10,output=layer1,Julia200,bl,ur,c,iterationlimit=25,output=layer1,Julia200,bl,ur,c,iterationlimit=125,output=layer1

bl,ur,c2.01.5I,2.0+1.5I,0.8+0.156I:

EmbedJulia500,bl,ur,c,output=layer2

EmbedJulia200,bl,ur,c,cutoff=4,output=layer2,Julia200,bl,ur,c,cutoff=100,output=layer2,Julia200,bl,ur,c,cutoff=10000,output=layer2

RArray1..500,1..500,1..2,datatype=float8:

Julia500,0.0.2I,1.5+1.0I,11+sqrt520.7I,iterationlimit=25,output=raw,container=R:

EmbedFitIntensityR..,..,1,FitIntensityR..,..,2

PColorize500,R,Array11,3,2,datatype=integer4,Array0.256,0.859,0.256,datatype=float8,rgb=0,mode=4,layer=2:

EmbedP

Compatibility

• 

The Fractals:-EscapeTime:-Julia command was introduced in Maple 18.

• 

For more information on Maple 18 changes, see Updates in Maple 18.

See Also

Fractals