MATLAB: Converting fractional doy (eg. 208.572917) to a date with mm/dd/yyyy HH:MM

datedoy

I have a set of data that includes doy for the year, 2013, but the doy are fractions such that July 27th at 13:45 would be represented as 208.5729167. I would like to convert this to a visual that is easier to interpret such as mm/dd/yyyy HH:MM. I've searched around and the closest function I've found converts a date to doy.
Thanks in advance

Best Answer

datestr(208.5729167 + datenum('2013/01/01'),'mm/dd/yyyy HH:MM')