3 % display fire spread in variable v of array of structures p
4 % p(i) needs to have fields v and times
7 % p=nc2struct(w,{'FIRE_AREA','Times'},{})
8 % spread(p,'fire_area')
12 for i=1:length(p),for j=1:size(p(i).fire_area,3)
13 contour(p(i).(v)(:,:,j))
14 title([v,' ',char(p(i).times(:,j)')],'interpreter','none')