All Packages Class Hierarchy This Package Previous Next Index
Class JSci.maths.chaos.StandardMap
java.lang.Object
|
+----JSci.maths.chaos.StandardMap
- public final class StandardMap
- extends Object
- implements NMapping
The StandardMap class provides an object that encapsulates the Standard map.
(Chirikov, Taylor).
-
StandardMap(Complex)
- Constructs a Standard map.
-
StandardMap(double)
- Constructs a Standard map.
-
iterate(int, Complex[])
- Iterates the map.
-
iterate(int, double[])
- Iterates the map.
-
map(Complex[])
- Performs the mapping.
-
map(double[])
- Performs the mapping.
StandardMap
public StandardMap(double kval)
- Constructs a Standard map.
- Parameters:
- kval - the value of the k parameter
StandardMap
public StandardMap(Complex kval)
- Constructs a Standard map.
- Parameters:
- kval - the value of the k parameter
map
public double[] map(double x[])
- Performs the mapping.
- Parameters:
- x - a 2-D double array
- Returns:
- a 2-D double array
map
public Complex[] map(Complex z[])
- Performs the mapping.
- Parameters:
- z - a 2-D complex array
- Returns:
- a 2-D complex array
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
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