Pickover¶
Systems · Discrete · Exotic maps
Dimension: 2
Equations¶
@staticjit
def _step(X, a, b, c, d):
x, y = X
xp = np.sin(a * y) + c * np.cos(a * x)
yp = np.sin(b * x) + d * np.cos(b * y)
return xp, yp
Parameters¶
| parameter | default |
|---|---|
a |
-1.4 |
b |
1.6 |
c |
1.0 |
d |
0.7 |
