gitinore *.txt files
[wrf-fire-matlab.git] / util1_jan / image_array_2d.m
blob891295ea706e68da0eaeca65833c37a5970acc8d
1 function image_array_2d(a)
2 % write_array_2d(a)
3 % Purpose: visualized 2d matrix written by write_array_2d
4 % for input to WRF-Fire so that it looks the same as the array
5 % in ncview from the arrays in WRF state
7 [m,n]=size(a);
8 h=imagesc(flipud(a'));
9 axis image;
10 t=get(gca,'YTickLabel');  %  put vertical label upside down
11 set(gca,'YTickLabel',flipud(t))
12 colorbar
13 end