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