[422372]: / functions / adminfunc / biosigpathfirst.m

Download this file

11 lines (7 with data), 244 Bytes

1
2
3
4
5
6
7
8
function biosigpathfirst()
% Add BIOSIG at the beginning of the path
str2doublepath = fileparts( which('str2double') );
sopenpath = fileparts( which('sopen') );
if ~strcmp(str2doublepath,sopenpath)
addpath(sopenpath,'-begin');
end