10 lines
347 B
Matlab
10 lines
347 B
Matlab
% Add the imdd_simulation framework to the path
|
|
if ispc
|
|
addpath(genpath('C:\Users\Silas\Documents\MATLAB\imdd_simulation'));
|
|
else
|
|
% Linux path on the cluster
|
|
addpath(genpath('/work_beegfs/sutef391/imdd_simulation'));
|
|
end
|
|
|
|
% Define where results should be written (used by WDM_model.m)
|
|
output_root = '/work_beegfs/sutef391/results_WDM'; |