├── .gitignore ├── CITATION.cff ├── LICENSE ├── README.md ├── examples ├── data │ ├── ch_dat_one.mat │ └── ch_dat_two.mat ├── fooof_example_multi_spectra.m ├── fooof_example_one_spectrum.m └── fooof_example_plot_model.m └── fooof_mat ├── fooof.m ├── fooof_check_settings.m ├── fooof_get_model.m ├── fooof_group.m ├── fooof_plot.m ├── fooof_unpack_results.m └── fooof_version.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fooof-tools/fooof_mat/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fooof-tools/fooof_mat/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fooof-tools/fooof_mat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fooof-tools/fooof_mat/HEAD/README.md -------------------------------------------------------------------------------- /examples/data/ch_dat_one.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fooof-tools/fooof_mat/HEAD/examples/data/ch_dat_one.mat -------------------------------------------------------------------------------- /examples/data/ch_dat_two.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fooof-tools/fooof_mat/HEAD/examples/data/ch_dat_two.mat -------------------------------------------------------------------------------- /examples/fooof_example_multi_spectra.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fooof-tools/fooof_mat/HEAD/examples/fooof_example_multi_spectra.m -------------------------------------------------------------------------------- /examples/fooof_example_one_spectrum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fooof-tools/fooof_mat/HEAD/examples/fooof_example_one_spectrum.m -------------------------------------------------------------------------------- /examples/fooof_example_plot_model.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fooof-tools/fooof_mat/HEAD/examples/fooof_example_plot_model.m -------------------------------------------------------------------------------- /fooof_mat/fooof.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fooof-tools/fooof_mat/HEAD/fooof_mat/fooof.m -------------------------------------------------------------------------------- /fooof_mat/fooof_check_settings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fooof-tools/fooof_mat/HEAD/fooof_mat/fooof_check_settings.m -------------------------------------------------------------------------------- /fooof_mat/fooof_get_model.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fooof-tools/fooof_mat/HEAD/fooof_mat/fooof_get_model.m -------------------------------------------------------------------------------- /fooof_mat/fooof_group.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fooof-tools/fooof_mat/HEAD/fooof_mat/fooof_group.m -------------------------------------------------------------------------------- /fooof_mat/fooof_plot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fooof-tools/fooof_mat/HEAD/fooof_mat/fooof_plot.m -------------------------------------------------------------------------------- /fooof_mat/fooof_unpack_results.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fooof-tools/fooof_mat/HEAD/fooof_mat/fooof_unpack_results.m -------------------------------------------------------------------------------- /fooof_mat/fooof_version.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fooof-tools/fooof_mat/HEAD/fooof_mat/fooof_version.m --------------------------------------------------------------------------------