Class Map2DGOYFunction
java.lang.Object
|
+----Map2DFunction
|
+----Map2DGOYFunction
- public class Map2DGOYFunction
- extends Map2DFunction
Class to return iterate of Grebogi-Ott-Yorke 2d map function.
-
a1
-
-
a2
-
-
myRandom
-
-
X
-
-
Y
-
-
Map2DGOYFunction()
-
-
iterate(double[])
- iterates the map function
-
iterateTangent(double[], double[])
- iterates the tangent space to the map function
-
setParameters(double[])
- Sets the map paramters
X
double X
Y
double Y
a1
double a1
a2
double a2
myRandom
Random myRandom
Map2DGOYFunction
Map2DGOYFunction()
setParameters
public void setParameters(double parameters[])
- Sets the map paramters
- Parameters:
- paramters - the array of input paramters
- Overrides:
- setParameters in class Map2DFunction
iterate
public void iterate(double x[])
- iterates the map function
- Parameters:
- x - input value
- Returns:
- iterated value
- Overrides:
- iterate in class Map2DFunction
iterateTangent
public void iterateTangent(double x[],
double t[])
- iterates the tangent space to the map function
- Parameters:
- x - input value and returns updated values
x[0] and x[1] contain the new values of X and Y
- t - value of tangent vector (updated by iteration)
- Overrides:
- iterateTangent in class Map2DFunction