convert int32 dates to matlab date (datenum)

조회 수: 2 (최근 30일)
Sri Adiyanti
Sri Adiyanti 2023년 4월 3일
댓글: Peter Perkins 2023년 4월 5일
Hi,
I work on netcdf4 file of a 2D model output. Date datatype is int32, how can I convert this into matlab date (datenume) or datetime?
Thanks.

답변 (1개)

Stephen23
Stephen23 2023년 4월 3일
편집: Stephen23 2023년 4월 3일
"Date datatype is int32"
You did not tell us the most important information, which is the epoch and step size.
Assuming that those dates are UNIX format (ie. epoch 1st Jan 1970, 1 second steps) then use DATETIME like this:
U = uint32(1680508182)
U = uint32 1680508182
D = datetime(U,'convertfrom','posix')
D = datetime
03-Apr-2023 07:49:42
  댓글 수: 1
Peter Perkins
Peter Perkins 2023년 4월 5일
Stephen kind of buried the lede, which was "use DATETIME", not datenum.

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

카테고리

Help CenterFile Exchange에서 Dates and Time에 대해 자세히 알아보기

태그

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by