├── .gitignore ├── README.md ├── TE_plot.py ├── TE_test.py ├── coupled_lorenz.m ├── coupled_rossler.m ├── figs ├── fig1-one_run.png ├── fig1-ten_runs.png ├── fig2-2.png └── fig2-one_run.png ├── lorenz_entropies.csv ├── rossler_entropies.csv └── symbolic_TE.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonpond/symbolic-transfer-entropy/HEAD/README.md -------------------------------------------------------------------------------- /TE_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonpond/symbolic-transfer-entropy/HEAD/TE_plot.py -------------------------------------------------------------------------------- /TE_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonpond/symbolic-transfer-entropy/HEAD/TE_test.py -------------------------------------------------------------------------------- /coupled_lorenz.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonpond/symbolic-transfer-entropy/HEAD/coupled_lorenz.m -------------------------------------------------------------------------------- /coupled_rossler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonpond/symbolic-transfer-entropy/HEAD/coupled_rossler.m -------------------------------------------------------------------------------- /figs/fig1-one_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonpond/symbolic-transfer-entropy/HEAD/figs/fig1-one_run.png -------------------------------------------------------------------------------- /figs/fig1-ten_runs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonpond/symbolic-transfer-entropy/HEAD/figs/fig1-ten_runs.png -------------------------------------------------------------------------------- /figs/fig2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonpond/symbolic-transfer-entropy/HEAD/figs/fig2-2.png -------------------------------------------------------------------------------- /figs/fig2-one_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonpond/symbolic-transfer-entropy/HEAD/figs/fig2-one_run.png -------------------------------------------------------------------------------- /lorenz_entropies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonpond/symbolic-transfer-entropy/HEAD/lorenz_entropies.csv -------------------------------------------------------------------------------- /rossler_entropies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonpond/symbolic-transfer-entropy/HEAD/rossler_entropies.csv -------------------------------------------------------------------------------- /symbolic_TE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonpond/symbolic-transfer-entropy/HEAD/symbolic_TE.py --------------------------------------------------------------------------------