is this a matlab bug?

1 次查看(过去 30 天)
b
b 2013-11-22
评论: Fox 2014-1-27
when i write like:
n = datenum('2017-06-12','yyyy-mm-dd',1900);
n = datenum('2017-06-12','yyyy-mm-dd',2000).
it return the same result.
the matlab version is r2013b.
what's the problem?

采纳的回答

David Sanchez
David Sanchez 2013-11-22
The pivot year is used in interpreting date strings that have the year specified as two characters. To see the difference, introduce the last two digits of your your year, otherwise, the use of pivotyear yields the same result.
>> n1 = datenum('17-06-11','yy-mm-dd',1900)
n1 =
700332
>> n2 = datenum('17-06-11','yy-mm-dd',2000)
n2 =
736857
  2 个评论
b
b 2013-11-25
编辑:b 2013-11-25
hi, David. Thanks for your kindly response. I have made some mistake. the code shoulde be
n = datenum('2017-06-12','yyyy-mm-dd',1900);
n = datenum('2017-06-12','yyyy-mm-dd',2000);
they return the same result.
Fox
Fox 2014-1-27
the two statements you have are the same: you have specified the full year '2017'. David specifies only the 3 and 4 characters, '17'. thus Matlab doesn't know if it's 2017 or 1917.
Took me way too long, but I finally found a way to navigate around this; I had data from about 1954 to now... so I wanted some pivot years as 1900 and some as 2000, and the data is not (and should not be) sorted. I told everything that the pivot year was 2000, so that I had a lot of "2054"'s etc.
m = datenum(datestamp,2000)
then in the next statement
datenum(m(m>datenum(now),:),1900);
setting values of m which are greater than today back to 1900. obviously if you have a 1912 or something, though, this would not be ok.
would love a good solution. i think i'm not seeing the tree from the forest anymore on this...

请先登录,再进行评论。

更多回答(0 个)

类别

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