├── .gitignore ├── LICENSE ├── README.md ├── demo └── demo.ipynb └── superlets ├── morlet.py └── superlets.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irhum/superlets/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irhum/superlets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irhum/superlets/HEAD/README.md -------------------------------------------------------------------------------- /demo/demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irhum/superlets/HEAD/demo/demo.ipynb -------------------------------------------------------------------------------- /superlets/morlet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irhum/superlets/HEAD/superlets/morlet.py -------------------------------------------------------------------------------- /superlets/superlets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irhum/superlets/HEAD/superlets/superlets.py --------------------------------------------------------------------------------