how get date fromthe long number?
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi,
The following number represent date
1246573330
How get a date from it ? where I tried datenum,datestr, and datevec, but does not working
Thanks
댓글 수: 2
채택된 답변
Star Strider
2022년 8월 23일
이동: Steven Lord
2022년 8월 23일
D = 1246573330;
DT1 = datetime(D, 'ConvertFrom','datenum')
DT2 = datetime(D, 'ConvertFrom','excel')
DT3 = datetime(D, 'ConvertFrom','posixtime')
DT4 = datetime(D, 'ConvertFrom','juliandate')
.
댓글 수: 10
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Dates and Time에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!