MATLAB: I want to convert the Julian date 273.791667 to calendar day and time

MATLAB

I want to convert the Julian date 273.791667 to calandar day and time

Best Answer

You'll have to specify a year, but for 2017 you can get a date vector like this:
datevec(datenum(2017,0, 273.791667))
or a date string like this:
datestr(datenum(2017,0, 273.791667))