You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+74-1Lines changed: 74 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,24 @@
2
2
3
3
A set of function for matlab and octave to create [BIDS-compatible](https://bids-specification.readthedocs.io/en/stable/) folder structure and filenames for the output of behavioral, EEG, fMRI, eyetracking studies.
You can then use the [matlab package manager](https://github.com/mobeets/mpm), to simply download the appropriate version of those dependencies and add them to your path by running a `getDependencies` function like the one below where you just need to replace `YOUR_EXPERIMENT_NAME` by the name of your experiment.
17
45
18
46
47
+
```matlab
48
+
function getDependencies(action)
49
+
% Will install on your computer the matlab dependencies specified in the mpm-requirements.txt
50
+
% and add them to the matlab path. The path is never saved so you need to run getDependencies() when
51
+
% you start matlab.
52
+
%
53
+
% getDependencies('update') will force the update and overwrite previous version of the dependencies.
54
+
%
55
+
% getDependencies() If you only already have the appropriate version but just want to add them to the matlab path.
0 commit comments