├── .gitignore ├── LICENSE ├── README.md ├── _config.yml ├── csp.py ├── eig.py ├── filters.py ├── get_data.py ├── main_csp.py ├── main_riemannian.py └── riemannian_multiscale.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiScale-BCI/IV-2a/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiScale-BCI/IV-2a/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiScale-BCI/IV-2a/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiScale-BCI/IV-2a/HEAD/_config.yml -------------------------------------------------------------------------------- /csp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiScale-BCI/IV-2a/HEAD/csp.py -------------------------------------------------------------------------------- /eig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiScale-BCI/IV-2a/HEAD/eig.py -------------------------------------------------------------------------------- /filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiScale-BCI/IV-2a/HEAD/filters.py -------------------------------------------------------------------------------- /get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiScale-BCI/IV-2a/HEAD/get_data.py -------------------------------------------------------------------------------- /main_csp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiScale-BCI/IV-2a/HEAD/main_csp.py -------------------------------------------------------------------------------- /main_riemannian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiScale-BCI/IV-2a/HEAD/main_riemannian.py -------------------------------------------------------------------------------- /riemannian_multiscale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiScale-BCI/IV-2a/HEAD/riemannian_multiscale.py --------------------------------------------------------------------------------