Filter löschen
Filter löschen

computing number of days between a matrix of dates

2 Ansichten (letzte 30 Tage)
Rosanna
Rosanna am 11 Okt. 2018
Bearbeitet: jonas am 11 Okt. 2018
Dear All, I have a long file of "dates of occurrences" of events, which are expressed in numbers as Year, Month, Day, Hour, Minutes (e.g. May 23, 2015 at 09:15 is the vector [2015 05 23 09 15]). I want to compute for each event, the distance in days from the starting date (e.g. [2000 01 01 00 00]). Could anyone provide some advice, as to loop the computation? Best regards, Rosanna

Antworten (1)

jonas
jonas am 11 Okt. 2018
Bearbeitet: jonas am 11 Okt. 2018
Put all dates in datetime format
T = datetime(Tvec)
then
Tdiff = T - T(1)
will output a duration vector

Kategorien

Mehr zu Dates and Time finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by