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

Download this file

10 lines (7 with data), 281 Bytes

1
2
3
4
5
6
7
8
function biosigpathlast()
% Add BIOSIG at the end of the path to avoid overloading Matlab functions
str2doublepath = fileparts( which('str2double') );
str2numpath = fileparts( which('str2num') );
if ~strcmp(str2doublepath,str2numpath)
addpath(str2numpath,'-begin');
end