fmt
[wrf-fire-matlab.git] / detection / datenum2time.m
blob316d5b0b8d4f229d1079ed1fd426fd8e68ea0548
1 function t=datenum2time(d,red)
2     % convert from datenum to sec since simulation start
3     t=(24*60*60)*(d - red.start_datenum);
4 end