Getting Started¶
Installation¶
pip install chaotax
Quick Start¶
Estimate the largest Lyapunov exponent of any stepper function:
import jax
import chaotax
exponent = chaotax.lyapunov(stepper)(
u_0,
key=jax.random.key(0),
)
pip install chaotax
Estimate the largest Lyapunov exponent of any stepper function:
import jax
import chaotax
exponent = chaotax.lyapunov(stepper)(
u_0,
key=jax.random.key(0),
)