Newton - 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]

  

Newton

  

Newton fractal generator

 

Calling Sequence

Parameters

Options

Description

Examples

Compatibility

Calling Sequence

Newton( n, zbl, zur, expr )

Newton( n, zbl, zur, expr, 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

expr

-

algebraic; the univariate expression to which the iterative Newton process will be applied

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.

• 

tolerance : keyword option of the form tolerance=value where value is positive and of type realcons. The iterative process is stopped for each complex input point if convergence is ascertained. The default value is 0.001.

• 

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 Newton command generates Array images which provide a visualization of the Newton fractal. The entries of the image are shaded according to the behavior of complex input points under the iterative Newton rootfinding process. For each complex input point z[0] a sequence of points z[i] are computed until either a final point meets a convergence criterion (escapes) or the iteration limit is exceeded.

• 

If the unknown variable in expr is, say, w and the derivative with respect to w is taken as dexpr then the iterates are computed by the formula,

inc=exprw=zi1|exprw=zi1dexprw=zi1|dexprw=zi1

zi=zi1inc

• 

Convergence is accepted if either abs(inc)/abs(z[i])<tolerance or abs(z[i])<tolerance.

• 

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&comma;Colorize&comma;HSVColorize&comma;Julia&comma;LColorize&comma;Lyapunov&comma;Mandelbrot&comma;Newton

(5.1)

withImageTools&colon;

bl,ur66I,6+6I

bl,ur−66I,6+6I

(5.2)

ft3t212

ft3t212

(5.3)

MNewton500&comma;bl&comma;ur&comma;f

EmbedM

EmbedNewton500&comma;bl&comma;ur&comma;f&comma;output=layer1

EmbedNewton200&comma;bl&comma;ur&comma;f&comma;iterationlimit=18&comma;output=layer1&comma;color&comma;Newton200&comma;bl&comma;ur&comma;f&comma;iterationlimit=30&comma;output=layer1&comma;color&comma;Newton200&comma;bl&comma;ur&comma;f&comma;iterationlimit=150&comma;output=layer1&comma;color

bl,ur22I,2+2I

bl,ur−22I,2+2I

(5.4)

fz4+2z3100

fz4+2z3100

(5.5)

EmbedNewton500&comma;bl&comma;ur&comma;f

EmbedNewton500&comma;bl&comma;ur&comma;f&comma;output=layer1&comma;layer2&comma;color

bl,ur22I,2+2I

bl,ur−22I,2+2I

(5.6)

fcosht+3

fcosht+3

(5.7)

EmbedNewton500&comma;bl&comma;ur&comma;f

Compatibility

• 

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

• 

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

See Also

Array

Fractals

ImageTools

ImageTools:-Embed