├── .gitignore ├── README.md ├── examples ├── D20_p8p17_spectrum.dat ├── l96.py ├── l96_example.py └── pyLyapunov.py └── pyLyapunov.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulrozdeba/pyLyapunov/HEAD/README.md -------------------------------------------------------------------------------- /examples/D20_p8p17_spectrum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulrozdeba/pyLyapunov/HEAD/examples/D20_p8p17_spectrum.dat -------------------------------------------------------------------------------- /examples/l96.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulrozdeba/pyLyapunov/HEAD/examples/l96.py -------------------------------------------------------------------------------- /examples/l96_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulrozdeba/pyLyapunov/HEAD/examples/l96_example.py -------------------------------------------------------------------------------- /examples/pyLyapunov.py: -------------------------------------------------------------------------------- 1 | ../pyLyapunov.py -------------------------------------------------------------------------------- /pyLyapunov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulrozdeba/pyLyapunov/HEAD/pyLyapunov.py --------------------------------------------------------------------------------