Burning Ship - 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]

  

BurningShip

  

BurningShip fractal generator

 

Calling Sequence

Parameters

Options

Description

Examples

Compatibility

Calling Sequence

BurningShip( n, zbl, zur )

BurningShip( n, zbl, zur, opts )

Parameters

n

-

positive integer specifying 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

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 10.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 BurningShip command generates Array images which provide a visualization of the BurningShip set. The entries of the image are shaded according to the behavior of complex input points under a particular iterative rational map. Taking an initial point z[0]=0+0*I then for each complex input point c a sequence of points z[i] are computed until abs(z[i]) exceeds the cutoff value (ie. escapes).

zi=zi1+Izi12+c,z0=0

• 

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 two-dimensional 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 three-dimensional 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 three-dimensional 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,ur1.80.09I,1.7+0.02I

bl,ur−1.80.09I,−1.7+0.02I

(5.2)

MBurningShip500,bl,ur

EmbedM

EmbedBurningShip500,bl,ur,output=layer1

EmbedBurningShip200,bl,ur,iterationlimit=18,output=layer1,BurningShip200,bl,ur,iterationlimit=30,output=layer1,BurningShip200,bl,ur,iterationlimit=150,output=layer1

bl,ur1.80.2I,1.5+0.1I

bl,ur−1.80.2I,−1.5+0.1I

(5.3)

EmbedBurningShip500,bl,ur

EmbedBurningShip500,bl,ur,output=layer2

EmbedBurningShip200,bl,ur,cutoff=4.0,output=layer2,BurningShip200,bl,ur,cutoff=10.0,output=layer2,BurningShip200,bl,ur,cutoff=100.0,output=layer2

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

bl,ur1.80.09I,1.7+0.02I

bl,ur−1.80.09I,−1.7+0.02I

(5.4)

BurningShip500,bl,ur,iterationlimit=50,cutoff=10.0,output=raw,container=R:

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

PColorize500,R,Array2,7,7,datatype=integer4,Array0.86,0.05,0.1,datatype=float8,rgb=0,mode=3,layer=2:

EmbedP

Compatibility

• 

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

• 

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

See Also

Fractals