How can I convert datetime vector to datenum (class-double)

조회 수: 37 (최근 30일)
Farshid Daryabor
Farshid Daryabor 2020년 4월 28일
답변: Peter Perkins 2020년 4월 30일
Please find attached file, time vector is original format in double I have, for some reason (preprocessing analysis) I have converted it to datetime format (Time) using below command. Again I want to convert Time to the original format (ie, class-double) according to the Pivot Year (1950-01-01). I really appreciate if someone can help me.
Time = datetime (time * 60 * 60 * 24, 'ConvertFrom', 'epochtime', 'Epoch', '1950-01-01');
  댓글 수: 3
Farshid Daryabor
Farshid Daryabor 2020년 4월 28일
I tried this one, but cannot be exactly same original one. You can test it by converting "iwant" using below commend to datetime is not what I expect.
Time = datetime(iwant*60*60*24,'ConvertFrom','epochtime','Epoch','1950-01-01');
see form and year
Farshid Daryabor
Farshid Daryabor 2020년 4월 28일
Dear Ameer,
Thanks very good

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

채택된 답변

Ameer Hamza
Ameer Hamza 2020년 4월 28일
try this
pvtYear = datetime(1950, 01, 01);
time_ = datenum(Time-pvtYear); % time_ is same as time, minor differences probably due to floating point errors
Result:
>> all(ismembertol(time_,time))
ans =
logical
1

추가 답변 (1개)

Peter Perkins
Peter Perkins 2020년 4월 30일
You almost certainly DO NOT want to convert datetimes to datenums. In recent versions of MATLAB, there are not many good reasons to want to use datenum at all.
If you mean, "I need to convert back to elapsed time since 1950", that's maybe a different story, but those are not "datenums". Here's a simple way to do it:
dt = days(myDatetimes - datetime(1950,1,1))
However, if your values are counting days since 1950, you are shooting yourself in the foot -- you will never have an exact representation of time within day because 1/24, 1/1440. 1/86400, none of them are representable exactly in double precision.
Unless your timestamps are always at 00:00:00, 03:00:00, etc., you would be much better off using seconds.

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by