Skip to content

Gingerbreadman

Systems · Discrete · Chaotic maps

Dimension: 2

Equations

\[ \begin{aligned} y_{0}' &= - y_{1} + \left|{y_{0}}\right| + 1 \\ y_{1}' &= y_{0} \end{aligned} \]

Gingerbreadman attractor

Usage

import tsdynamics as ts

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

Back to Chaotic maps