1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
function [sFiles, sTasGrid] = tsgGetPaths()
%
% [sFiles, sTasGrid] = tsgGetPaths()
%
% You should edit the following variables accordingly
% sTasGrdid should be the path + executable of that tasgrid wrapper
% sFile should be root of the work files directory
%
% it is recommended to use absolute path
sTasGrid = ['ENTER THE PATH TO tasgrid EXECUTABLE'];
sFiles = ['ENTER THE PATH TO MATLAB WORK FOLDER'];
sTasGrid = regexprep(sTasGrid, ' ', '\\ ');
sFiles = regexprep(sFiles, ' ', '\\ ');
end
|