Fractals[EscapeTime]
Newton
Newton fractal generator
Calling Sequence
Parameters
Options
Description
Examples
Compatibility
Newton( n, zbl, zur, expr )
Newton( n, zbl, zur, expr, opts )
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
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.
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=zi−1|exprw=zi−1dexprw=zi−1|dexprw=zi−1
zi=zi−1−inc
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.
with⁡Fractals:-EscapeTime
BurningShip,Colorize,HSVColorize,Julia,LColorize,Lyapunov,Mandelbrot,Newton
with⁡ImageTools:
bl,ur≔−6−6⁢I,6+6⁢I
f≔t3−t2−12
M≔Newton⁡500,bl,ur,f
Embed⁡M
Embed⁡Newton⁡500,bl,ur,f,output=layer1
Embed⁡Newton⁡200,bl,ur,f,iterationlimit=18,output=layer1,color,Newton⁡200,bl,ur,f,iterationlimit=30,output=layer1,color,Newton⁡200,bl,ur,f,iterationlimit=150,output=layer1,color
bl,ur≔−2−2⁢I,2+2⁢I
f≔z4+2⁢z3−100
Embed⁡Newton⁡500,bl,ur,f
Embed⁡Newton⁡500,bl,ur,f,output=layer1,layer2,color
f≔cosh⁡t+3
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
Download Help Document