comments
[wrf-fire-matlab.git] / detection / plot_loglike.m
blob55a256ca61fc6f17efbcc35a1ba08dc3987a10e4
1 function plot_loglike(fig,f,s,red)
2 % plot_loglike(fig,f,s,red)
4 % display array in a way suitable for log likelihood
5 % overay with fireline at end of observations = time_bounds(2) 
6 %   fig     figure number
7 %   f       array to show
8 %   s       title
9 %   red     the reduced structure with everyhing
10 figure(fig)
11 hold off, clf
12 % show field f
13 pcolor(red.fxlong,red.fxlat,f)
14 shading interp
15 colormap default
16 colorbar
17 hold on
18 % add fireline
19 contour3(red.fxlong,red.fxlat,red.tign-red.time_bounds(2),[0 0],'k')
20 hold off
21 title(s)
22 end