plot_fmw_3d.m
[wrf-fire-matlab.git] / startup.m
blobb619329ed955c3c50561b92b0fecf65dc97cb061
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']...
21 for i=1:length(d),
22     s=d{i};
23     addpath(s)
24     disp(s)
25     ls(s)
26 end
27 clear p d i s