Skip to content

KaplanYorke

Systems · Discrete · Polynomial maps

Dimension: 2

Equations

@staticjit
def _step(X, alpha):
    x, y = X
    xp = (2 * x) % 0.99999995
    yp = alpha * y + np.cos(4 * np.pi * x)
    return xp, yp

Parameters

parameter default
alpha 0.2

KaplanYorke attractor

Usage

import tsdynamics as ts

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

Back to Polynomial maps