taking computing of the divergence load F outside of hexa
[wrf-fire-matlab.git] / util1_jan / plotmap.m
blobd613e6bc385d5401e7d70f8688c2147f641a1001
1 function h=plotmap(fig,x,y,z,s)
2 if fig~=0,
3     figure(fig);clf
4 end
5 h=pcolor(x,y,z);
6 set(h,'EdgeAlpha',0,'FaceAlpha',1);
7 colorbar;
8 title(s);
9 end