How would I convert years to date time?

조회 수: 2 (최근 30일)
Ali Almakhmari
Ali Almakhmari 2022년 8월 9일
편집: Stephen23 2022년 8월 9일
I have many values given in years. How would I convert them to a date and time in UTC? For example, one of the values I have is 2022.1765918316. Its obviously the year 2022 and sometime in february, but how would I go about getting the exact date AND time (hours, minutes, and seconds) in UTC?

채택된 답변

Stephen23
Stephen23 2022년 8월 9일
편집: Stephen23 2022년 8월 9일
N = 2022.1765918316;
D = datetime(fix(N),1,1) + calyears([0;1]);
T = D(1) + diff(D)*mod(N,1)
T = datetime
06-Mar-2022 10:56:40

추가 답변 (0개)

카테고리

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

태그

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by