Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neuro-mechatronics-interfaces/matlab_package__ckc
This should be initialized as gitmodule with name `+ckc` to use as a MATLAB package.
https://github.com/neuro-mechatronics-interfaces/matlab_package__ckc
Last synced: 12 days ago
JSON representation
This should be initialized as gitmodule with name `+ckc` to use as a MATLAB package.
- Host: GitHub
- URL: https://github.com/neuro-mechatronics-interfaces/matlab_package__ckc
- Owner: Neuro-Mechatronics-Interfaces
- Created: 2022-12-13T19:24:07.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-04T23:01:44.000Z (about 2 months ago)
- Last Synced: 2024-12-05T00:18:19.559Z (about 2 months ago)
- Language: MATLAB
- Size: 95.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# +ckc #
This should be initialized as gitmodule with name `+ckc` to use as a MATLAB package.## Installation ##
Navigate to the project repository root folder in a git terminal. From there, you can add this submodule using the following command:
```(bash)
git submodule add [email protected]:Neuro-Mechatronics-Interfaces/matlab_package__ckc.git +ckc
```## Pre-Processing Template ##
Any `ckc.pre_process_.m` function is the first step in the processing pipeline for using the DEMUSE tool.
This procedure puts the `.poly5` (or `.mat`) recording file into the correct (`.mat`) format, which can then be loaded by the experiment/application-specific `ckc.reader` function.
Create your experiment/pipeline-specific pre-processing by copying `ckc.template__pre_process.m` into the `+ckc` folder, then renaming it as-appropriate and modifying the actual processing as appropriate based on the files that should go into the resultant `.mat` file.## Reader Template ##
Any `ckc.reader_.m` is a CKC file-reader. It should be used with any files generated from the corresponding `ckc.pre_process_.m`.
To create an experiment/pipeline-specific reader, copy `ckc.template__reader.m` to a new file in `+ckc` and name it to match your new pre-processing function.