Class Map2DGOYFunction

java.lang.Object
   |
   +----Map2DFunction
           |
           +----Map2DGOYFunction

public class Map2DGOYFunction
extends Map2DFunction
Class to return iterate of Grebogi-Ott-Yorke 2d map function.


Variable Index

 o a1
 o a2
 o myRandom
 o X
 o Y

Constructor Index

 o Map2DGOYFunction()

Method Index

 o iterate(double[])
iterates the map function
 o iterateTangent(double[], double[])
iterates the tangent space to the map function
 o setParameters(double[])
Sets the map paramters

Variables

 o X
 double X
 o Y
 double Y
 o a1
 double a1
 o a2
 double a2
 o myRandom
 Random myRandom

Constructors

 o Map2DGOYFunction
 Map2DGOYFunction()

Methods

 o setParameters
 public void setParameters(double parameters[])
Sets the map paramters

Parameters:
paramters - the array of input paramters
Overrides:
setParameters in class Map2DFunction
 o iterate
 public void iterate(double x[])
iterates the map function

Parameters:
x - input value
Returns:
iterated value
Overrides:
iterate in class Map2DFunction
 o 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