Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
*DS_Store

*.m~
*.asv
*octave-workspace

# exclude content of logfiles folders
Expand Down
6 changes: 3 additions & 3 deletions initEnv.m
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
function initEnv

octaveVersion = '4.0.3';
matlabVersion = '9.2.0';
matlabVersion = '9.1.0';

if isOctave

Expand Down Expand Up @@ -77,7 +77,7 @@
persistent cacheval % speeds up repeated calls

if isempty (cacheval)
cacheval = (exist ("OCTAVE_VERSION", "builtin") > 0);
cacheval = (exist ('OCTAVE_VERSION', 'builtin') > 0);
end

retval = cacheval;
Expand All @@ -86,7 +86,7 @@
function addDependencies()

pth = fileparts(mfilename('fullpath'));
addpath(fullfile(pth, 'lib', 'CPP_BIDS', 'src'));
addpath(genpath(fullfile(pth, 'lib', 'CPP_BIDS', 'src')));
addpath(fullfile(pth, 'lib', 'CPP_PTB'));
addpath(genpath(fullfile(pth, 'lib', 'CPP_PTB', 'src')));
addpath(fullfile(pth, 'subfun'));
Expand Down
2 changes: 1 addition & 1 deletion lib/CPP_PTB
Submodule CPP_PTB updated 2 files
+11 −2 README.md
+124 −86 eyeTracker.m