Switch to unified view

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