Converting date string to number

27 Ansichten (letzte 30 Tage)
Danielle Leblance
Danielle Leblance am 11 Feb. 2018
Beantwortet: Walter Roberson am 11 Feb. 2018
I have a vector of the following format 01-Jul-1980 00:00:00 how can I convert to a matlab date number?
  1 Kommentar
Danielle Leblance
Danielle Leblance am 11 Feb. 2018
Please find attached the vector that I am trying to convert

Melden Sie sich an, um zu kommentieren.

Antworten (3)

Danielle Leblance
Danielle Leblance am 11 Feb. 2018
I put it in excel and convert it to excel number then to matlab number using x2mdate function. So I have managed to find a way to go over it.

Jan
Jan am 11 Feb. 2018
S = '01-Jul-1980 00:00:00';
datenum(S) % Old
datetime(S) % Modern

Walter Roberson
Walter Roberson am 11 Feb. 2018
You have a datetime array. You can convert it to serial datenum using
datenum(issuedate)
Note that this is typically not required any more, but can be required for some plotting reasons from R2013b to R2015b.

Kategorien

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

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by