Effacer les filtres
Effacer les filtres

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

20 vues (au cours des 30 derniers jours)
Farshid Daryabor
Farshid Daryabor le 28 Avr 2020
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 commentaires
Farshid Daryabor
Farshid Daryabor le 28 Avr 2020
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 le 28 Avr 2020
Dear Ameer,
Thanks very good

Connectez-vous pour commenter.

Réponse acceptée

Ameer Hamza
Ameer Hamza le 28 Avr 2020
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
  2 commentaires
Farshid Daryabor
Farshid Daryabor le 28 Avr 2020
Thanks Ameer, very good
Ameer Hamza
Ameer Hamza le 28 Avr 2020
Glad to be of help.

Connectez-vous pour commenter.

Plus de réponses (1)

Peter Perkins
Peter Perkins le 30 Avr 2020
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.

Catégories

En savoir plus sur Dates and Time dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by