KaplanYorke¶
Systems · Discrete · Polynomial maps
Dimension: 2
Equations¶
@staticjit
def _step(X, alpha):
x, y = X
xp = (2 * x) % 0.99999995
yp = alpha * y + np.cos(4 * np.pi * x)
return xp, yp
Parameters¶
| parameter | default |
|---|---|
alpha |
0.2 |
