Merge branch 'fixf'
[wrf-fire-matlab.git] / detection / stime.m
blob6091fb0ca73403dfbd4ce7dbaeee99ef6437e963
1 function str=stime(t,red)
2 % str=stime(t,red)
3 % convert time given as datenum to string and day from start
4 % in:
5 %   t    time as datenum
6 %   red  struct with field base_time
7 % out:
8 %   str  char array
10     timefmt='dd-mmm-yyyy HH:MM:SS';
11     if ~isscalar(t) | ~isnumeric(t),
12         error('t must be a number')
13     end
14     str=sprintf('%s %g days from start',datestr(t,timefmt),...
15         t-red.start_datenum);
16 end