Skip to content

Commit e423e88

Browse files
Merge pull request #33 from Remi-Gau/remi-eyetracker
tiny changes on eyetracking
2 parents 4120833 + f5e8700 commit e423e88

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
*DS_Store
22

33
*.m~
4+
*.asv
45
*octave-workspace
56

67
# exclude content of logfiles folders

initEnv.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
function initEnv
1616

1717
octaveVersion = '4.0.3';
18-
matlabVersion = '9.2.0';
18+
matlabVersion = '9.1.0';
1919

2020
if isOctave
2121

@@ -77,7 +77,7 @@
7777
persistent cacheval % speeds up repeated calls
7878

7979
if isempty (cacheval)
80-
cacheval = (exist ("OCTAVE_VERSION", "builtin") > 0);
80+
cacheval = (exist ('OCTAVE_VERSION', 'builtin') > 0);
8181
end
8282

8383
retval = cacheval;
@@ -86,7 +86,7 @@
8686
function addDependencies()
8787

8888
pth = fileparts(mfilename('fullpath'));
89-
addpath(fullfile(pth, 'lib', 'CPP_BIDS', 'src'));
89+
addpath(genpath(fullfile(pth, 'lib', 'CPP_BIDS', 'src')));
9090
addpath(fullfile(pth, 'lib', 'CPP_PTB'));
9191
addpath(genpath(fullfile(pth, 'lib', 'CPP_PTB', 'src')));
9292
addpath(fullfile(pth, 'subfun'));

lib/CPP_PTB

0 commit comments

Comments
 (0)