All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class JSci.maths.chaos.LogisticMap

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

public final class LogisticMap
extends Object
implements Mapping
The LogisticMap class provides an object that encapsulates the logistic map.


Variable Index

 o R_2CYCLE
2 cycle bifurcation point.
 o R_4CYCLE
4 cycle bifurcation point.
 o R_6CYCLE
6 cycle bifurcation point.
 o R_8CYCLE
8 cycle bifurcation point.
 o R_ACCUMULATION
Accumulation point.

Constructor Index

 o LogisticMap(Complex)
Constructs a logistic map.
 o LogisticMap(double)
Constructs a logistic 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 R_2CYCLE
 public static final double R_2CYCLE
2 cycle bifurcation point.

 o R_4CYCLE
 public static final double R_4CYCLE
4 cycle bifurcation point.

 o R_6CYCLE
 public static final double R_6CYCLE
6 cycle bifurcation point.

 o R_8CYCLE
 public static final double R_8CYCLE
8 cycle bifurcation point.

 o R_ACCUMULATION
 public static final double R_ACCUMULATION
Accumulation point.

Constructors

 o LogisticMap
 public LogisticMap(double rval)
Constructs a logistic map.

Parameters:
rval - the value of the r parameter
 o LogisticMap
 public LogisticMap(Complex rval)
Constructs a logistic map.

Parameters:
rval - the value of the r parameter

Methods

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

Parameters:
x - a double
 o map
 public Complex map(Complex z)
Performs the mapping.

Parameters:
z - a complex number
 o iterate
 public double iterate(int n,
                       double x)
Iterates the map.

Parameters:
n - the number of iterations
x - the initial value
 o iterate
 public Complex iterate(int n,
                        Complex z)
Iterates the map.

Parameters:
n - the number of iterations
z - the initial value

All Packages  Class Hierarchy  This Package  Previous  Next  Index