Midnight becomes noon with datetime function

14 Ansichten (letzte 30 Tage)
Evan Dailey
Evan Dailey am 6 Aug. 2018
Kommentiert: Peter Perkins am 24 Aug. 2018
I've run into a problem when converting date and time values to Matlab datetime values. The datetime function seems to force midnight (00:00) to noon (12:00). But, when comparing the outputs that look identical, Matlab says they are not. For example:
>> a = datetime(2016,03,01,0,0,0)
a =
datetime
2016 03 01 12 00 00
>> b = datetime(2016,03,01,12,0,0)
b =
datetime
2016 03 01 12 00 00
>> a == b
ans =
logical
0
How is this possible? Am I just missing something, or is there a good solution to correct or avoid this? This seems scary becaues if I'm using the output values in a larger script, how do I know that Matlab isn't confusing midnight and noon, and how would I be able to actually tell which is which?
  6 Kommentare
Evan Dailey
Evan Dailey am 6 Aug. 2018
Wow, that's strange we get different results with the same file on the same version.
I'm using Windows with:
>> version
ans =
'9.4.0.813654 (R2018a)'
Walter Roberson
Walter Roberson am 7 Aug. 2018
What is your system region set to? That could determine the default format for date representation. There is also a Preference about region that can affect the default format.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Evan Dailey
Evan Dailey am 6 Aug. 2018
Bearbeitet: Evan Dailey am 6 Aug. 2018
I think it figured it out: in Preferences, under Command Window, there's a Datetime format. I changed it from "uuuu MM dd hh:mm:ss" to "uuuu-MM-dd HH:mm:ss" -- the key being "HH" rather than "hh". And now:
>> a
a =
datetime
2016-03-01 00:00:00
Easy answer, if that's really all that's going on. I just assumed datetime values were the values, not formatted strings.
  2 Kommentare
Stephen23
Stephen23 am 7 Aug. 2018
"I just assumed datetime values were the values, not formatted strings."
What are "the values" ?
Any time you look at a number or character vector or anything else it is always a representation of the data stored in memory. Unless you enjoy looking at binary bits, all displayed data you look at is displayed according to some set of rules and assumptions: you cannot "see" real datetime "values" any more than you can "see" a real floating point number. Important to note is that representations of the underlying data are equally valid, in just the same way that
3.1
3.14159
0.314159E1
pi
are all equally valid ways to represent the same number. None of them is more "correct" than the other, they just follow different rules and assumptions.
What is the point of this? That any displayed representation of a datetime object will always be formatted according to some rules, so no matter whether you see it as a formatted date string, or a number, or days since some epoch, all of these represent the same data and all follow rules and assumptions. None of them are "the values", they are all just visual representation of the datetime object.
Peter Perkins
Peter Perkins am 24 Aug. 2018
If your preference is a 12hr clock (it seems like that was unintentional, but if), you can use hh in your display preference, but you'll want to ad an 'a' at the end of the format to show am/pm.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

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

Produkte


Version

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by