Skip to content

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

Pickover attractor

Usage

import tsdynamics as ts

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

Back to Exotic maps