All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class JSci.maths.chaos.GingerbreadManMap

java.lang.Object
   |
   +----JSci.maths.chaos.GingerbreadManMap

public final class GingerbreadManMap
extends Object
implements NMapping
The GingerbreadManMap class provides an object that encapsulates the gingerbread man map. (Devaney).


Variable Index

 o X_CHAOS
Chaotic x value.

Constructor Index

 o GingerbreadManMap()
Constructs a gingerbread man map.

Method Index

 o iterate(int, Complex[])
Iterates the map.
 o iterate(int, double[])
Iterates the map.
 o map(Complex[])
Performs the mapping.
 o map(double[])
Performs the mapping.

Variables

 o X_CHAOS
 public static final double X_CHAOS[]
Chaotic x value.

Constructors

 o GingerbreadManMap
 public GingerbreadManMap()
Constructs a gingerbread man map.

Methods

 o map
 public double[] map(double x[])
Performs the mapping.

Parameters:
x - a 2-D double array
Returns:
a 2-D double array
 o map
 public Complex[] map(Complex z[])
Performs the mapping.

Parameters:
z - a 2-D complex array
Returns:
a 2-D complex array
 o iterate
 public double[] iterate(int n,
                         double x[])
Iterates the map.

Parameters:
n - the number of iterations
x - the initial values (2-D)
Returns:
a 2-D double array
 o iterate
 public Complex[] iterate(int n,
                          Complex z[])
Iterates the map.

Parameters:
n - the number of iterations
z - the initial values (2-D)
Returns:
a 2-D complex array

All Packages  Class Hierarchy  This Package  Previous  Next  Index