Skip to content

Bedhead

Systems · Discrete · Exotic maps

Dimension: 2

Equations

@staticjit
def _step(X, a, b):
    x, y = X
    xp = np.sin(x * y / b) * y + np.cos(a * x - y)
    yp = x + np.sin(y) / b
    return xp, yp

Parameters

parameter default
a -0.67
b 0.83

Bedhead attractor

Usage

import tsdynamics as ts

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

Back to Exotic maps