MackeyGlass.jl
Julia scripts to generate Mackey Glass time series.
Info
This script generates a Mackey-Glass time series using the 4th order Runge-Kutta method. The code is a straighforward translation in Julia of Matlab code, available here.
Exemple
using MackeyGlass
using Plots
T,X = MGGenerator()
plot(T, X, label = "Mackey Glass")