How can I convert the serial date numbers in a text file to calendar dates

조회 수: 1 (최근 30일)
Abigail Waring
Abigail Waring 2021년 7월 21일
답변: Star Strider 2021년 7월 21일
I have written a code to extract the x and y data from a plot
but the x data comes out as a serial date number and time and i'd like it in calendar months and time
  댓글 수: 4
Cris LaPierre
Cris LaPierre 2021년 7월 21일
Provide an example serial date and corresponding date and time
Abigail Waring
Abigail Waring 2021년 7월 21일
722816.416666667 I believe is 31st dec 1978 10:00:00

댓글을 달려면 로그인하십시오.

답변 (1개)

Star Strider
Star Strider 2021년 7월 21일
It appears to be a MATLAB date number, and if so, maps to 1 Jan 1979 10:00:00
DT = datetime(722816.416666667, 'ConvertFrom','datenum')
DT = datetime
01-Jan-1979 10:00:00
.

카테고리

Help CenterFile Exchange에서 Calendar에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by