Merge branch 'fixf'
[wrf-fire-matlab.git] / cycling / plot_grans.m
bloba6afc80e05350fef1b2ed8d7a5e73b3bba655cf0
1 function plot_grans(g)
3 n = length(g);
4 b = g(1).time;
5 figure
6 for i = 2:n
7     t1 = g(i-1).time - b;
8     t2 = g(i).time -b;
9     if mod(i,2)
10         c = 'green';
11     else
12         c = 'red';
13     end
14     x = [0 n n 0];
15     y = [t1 t1 t2 t2];
16     hold on
17     patch(x,y,c)
19 end