blob: be56dd64dc37cf8692805773e0bee9154da84d23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
if ispc
mount_point = 'Z:';
% this is necessary to have access to filename2os_fname.m
addpath( horzcat( mount_point, '\MATLAB\file_utils') );
end
if isunix
mount_point = '/mnt/qol_grp_data';
% this is necessary to have access to filename2os_fname.m
addpath( horzcat( mount_point, '/MATLAB/file_utils') );
addpath( horzcat( mount_point, '/MATLAB/linux-matlab-gpib') );
end
%% get access to computer dependent staff
path2add = horzcat( mount_point, '/MATLAB/computer_dependent/', getComputerName());
path2add = filename2os_fname( path2add );
addpath( path2add );
|