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).


Constructor Index

 o StandardMap(Complex)
Constructs a Standard map.
 o StandardMap(double)
Constructs a Standard 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.

Constructors

 o StandardMap
 public StandardMap(double kval)
Constructs a Standard map.

Parameters:
kval - the value of the k parameter
 o StandardMap
 public StandardMap(Complex kval)
Constructs a Standard map.

Parameters:
kval - the value of the k parameter

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