├── .gitattributes ├── .gitignore ├── FBCSP_Multiclass.py ├── FBCSP_V4.py ├── FBCSP_support_function.py ├── LICENSE ├── OLD Version ├── FBCSP.py ├── FBCSP_V2.py └── FBCSP_V3.py ├── Plot ├── FBCSP_features_all_band_separate.png ├── FBCSP_features_all_band_together_V1.png └── FBCSP_features_all_band_together_V1_2.png ├── README.md ├── __pycache__ ├── FBCSP_Multiclass.cpython-38.pyc ├── FBCSP_V2.cpython-38.pyc ├── FBCSP_V3.cpython-38.pyc ├── FBCSP_V4.cpython-38.pyc └── FBCSP_support_function.cpython-38.pyc ├── dataset_transform.m ├── test_file_binary.py ├── test_file_binary_2.py └── test_file_multi.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesus-333/FBCSP-Python/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesus-333/FBCSP-Python/HEAD/.gitignore -------------------------------------------------------------------------------- /FBCSP_Multiclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesus-333/FBCSP-Python/HEAD/FBCSP_Multiclass.py -------------------------------------------------------------------------------- /FBCSP_V4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesus-333/FBCSP-Python/HEAD/FBCSP_V4.py -------------------------------------------------------------------------------- /FBCSP_support_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesus-333/FBCSP-Python/HEAD/FBCSP_support_function.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesus-333/FBCSP-Python/HEAD/LICENSE -------------------------------------------------------------------------------- /OLD Version/FBCSP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesus-333/FBCSP-Python/HEAD/OLD Version/FBCSP.py -------------------------------------------------------------------------------- /OLD Version/FBCSP_V2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesus-333/FBCSP-Python/HEAD/OLD Version/FBCSP_V2.py -------------------------------------------------------------------------------- /OLD Version/FBCSP_V3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesus-333/FBCSP-Python/HEAD/OLD Version/FBCSP_V3.py -------------------------------------------------------------------------------- /Plot/FBCSP_features_all_band_separate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesus-333/FBCSP-Python/HEAD/Plot/FBCSP_features_all_band_separate.png -------------------------------------------------------------------------------- /Plot/FBCSP_features_all_band_together_V1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesus-333/FBCSP-Python/HEAD/Plot/FBCSP_features_all_band_together_V1.png -------------------------------------------------------------------------------- /Plot/FBCSP_features_all_band_together_V1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesus-333/FBCSP-Python/HEAD/Plot/FBCSP_features_all_band_together_V1_2.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesus-333/FBCSP-Python/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/FBCSP_Multiclass.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesus-333/FBCSP-Python/HEAD/__pycache__/FBCSP_Multiclass.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/FBCSP_V2.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesus-333/FBCSP-Python/HEAD/__pycache__/FBCSP_V2.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/FBCSP_V3.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesus-333/FBCSP-Python/HEAD/__pycache__/FBCSP_V3.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/FBCSP_V4.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesus-333/FBCSP-Python/HEAD/__pycache__/FBCSP_V4.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/FBCSP_support_function.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesus-333/FBCSP-Python/HEAD/__pycache__/FBCSP_support_function.cpython-38.pyc -------------------------------------------------------------------------------- /dataset_transform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesus-333/FBCSP-Python/HEAD/dataset_transform.m -------------------------------------------------------------------------------- /test_file_binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesus-333/FBCSP-Python/HEAD/test_file_binary.py -------------------------------------------------------------------------------- /test_file_binary_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesus-333/FBCSP-Python/HEAD/test_file_binary_2.py -------------------------------------------------------------------------------- /test_file_multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesus-333/FBCSP-Python/HEAD/test_file_multi.py --------------------------------------------------------------------------------