Julia scripts to generate Mackey Glass time series.
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.
using MackeyGlass
using Plots
T,X = MGGenerator()
plot(T, X, label = "Mackey Glass")