Produce a Date vector starting with a desired date

1 次查看(过去 30 天)
Dear all, I am trying to produce a date vector, which includes year and month I would like to start With July 1926, and end with December 2014. Optimally, the format should be YYYYMM.
Thank you very much in advance!
Chris

采纳的回答

Star Strider
Star Strider 2015-8-11
This seems to work:
date1 = datenum('192607','yyyymm');
date2 = datenum('201412','yyyymm');
datev = date1:(365.25/13):date2;
result = unique(datestr(datev, 'yyyymm'),'rows');
sample = result(1:24,:) % Sample Output

更多回答(1 个)

Azzi Abdelmalek
Azzi Abdelmalek 2015-8-11
d1='192607'
d2='201412'
dd1=datenum(d1,'yyyymm')
dd2=datenum(d2,'yyyymm')
out=datestr(dd1:dd2,'yyyymm')
  1 个评论
Christoph Meier
Christoph Meier 2015-8-11
Dear Azzi, thank you very much! I followed your instructions, and get the following output:
192607 192607 192607 192607 192607 192607 192607 192607 192607 192607 192607 192607 192607 192607 192607 192607 192607 192607 192607 192607 192607 192607 192607 192607 192607 192607 192607 192607 192607 192607 192607 192608 192608 192608 192608 192608 192608 192608 192608 192608 192608 192608 192608 192608 192608 192608 192608 192608 192608 192608 192608 192608 192608 192608 192608 192608 192608 192608 192608 192608 192608 192608 192609 192609 192609 192609 192609 192609 192609 192609
The problem is that '192607' is repeating 30 times, for each day of the months, but I am looking for the following format: 192607 192608 192609 ...
Thank you very much!

请先登录,再进行评论。

类别

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