forked from davidjuliancaldwell/MATLAB_ECoG_code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetupEnvironment.m
More file actions
20 lines (18 loc) · 1023 Bytes
/
setupEnvironment.m
File metadata and controls
20 lines (18 loc) · 1023 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
% here is an example m file of what setupEnvironment.m should look like on
% your machine. Make sure to change the values of the environment
% variables below to reflect your workspace settings.
if ispc
setenv('matlab_devel_dir', 'C:\Users\djcald.CSENETID\MATLAB_ECoG_Code');
setenv('gridlab_dir', 'C:\Users\djcald.CSENETID\MATLAB_ECoG_Code');
setenv('shared_code_dir', 'C:\Users\djcald.CSENETID\SharedCode');
setenv('subject_dir', 'C:\Users\djcald.CSENETID\Data\Subjects');
setenv('dbs_subject_dir','G:\My Drive\GRIDLabDavidShared\DBS\');
setenv('OUTPUT_DIR', 'C:\Users\djcald.CSENETID\Data\Output');
elseif ismac
setenv('matlab_devel_dir', '/Users/djcald/MATLAB/Code');
setenv('gridlab_dir', '/Users/djcald/MATLAB/Code');
setenv('shared_code_dir', '/Users/djcald/MATLAB/');
setenv('subject_dir', '/Users/djcald/Subjects/');
setenv('dbs_subject_dir','/Volumes/GoogleDrive/My Drive/GRIDLabDavidShared/DBS');
setenv('OUTPUT_DIR', '/Users/djcald/MATLAB/Output');
end