Skip to content

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

Svensson attractor

Usage

import tsdynamics as ts

sys = ts.Svensson()
traj = sys.iterate(steps=10_000)

Back to Exotic maps