adding prints
[wrf-fire-matlab.git] / startup.m
blob2935248354c01bc9b00a8a315b997a3da92845c6
1 % set matlab path to include files in wrf/other/Matlab
2 format compact
3 p=mfilename('fullpath');
4 p=p(1:end-7);
5 d={  p,...
6     [p,'/vis'],...
7     [p,'/util1_jan'],...
8     [p,'/netcdf'],...
9     [p,'/cycling'],...
10     [p,'/vis3d'],...
11     [p,'/debug'],...
12     [p,'/perimeter'],...
13     [p,'/detection'],...
14     [p,'/detect_ignition'],...
15     [p,'/detect_ignition/new_likelihood'],...
16     [p,'/chem'],...
17     [p,'/impact'],...
18     [p,'/fft'],...
19     [p,'/quicwind'],...
20     [p,'/femwind']
22 for i=1:length(d),
23     s=d{i};
24     addpath(s)
25     disp(s)
26     ls(s)
27 end
28 clear p d i s