How can I add serial date and time for each 12 min ?

2 ビュー (過去 30 日間)
Riyadh Muttaleb
Riyadh Muttaleb 2016 年 12 月 2 日
コメント済み: Riyadh Muttaleb 2016 年 12 月 3 日
Hello All,
I have date and time like: (2009 10 09 12 36 00), I would like to make a serial date and time that increase each 12 min (that means 36 min will be 48 00 12 24 .....)to date and time for example (2009 10 10 22 24 00).
Please any help: Thanks in advance,
Riyadh

採用された回答

Steven Lord
Steven Lord 2016 年 12 月 2 日
Take a look at this documentation page for some examples of how to do what you want using datetime and duration arrays.

その他の回答 (2 件)

Walter Roberson
Walter Roberson 2016 年 12 月 2 日
For serial dates, use addtodate()
For datetime objects, you can
Starting_datetime + minutes(12:12:60)
  3 件のコメント
Walter Roberson
Walter Roberson 2016 年 12 月 3 日
t = datenum('07-Apr-2008 23:00:00')
addtodate(t, 12, 'minutes')
the result is a serial date number.
2009 10 09 12 36 00 is datevec form, not serial date numbers. If you want date vector format, then one approach is
minutes_to_add = 12 : 12 : 60;
nm = length(minutes_to_add);
v = [2009 10 09 12 36 00];
new_v = datevec( datenum( repmat(v, nm, 1) + [zeros(nm, 4), minutes_to_add(:), zeros(nm, 1)] ) );
Riyadh Muttaleb
Riyadh Muttaleb 2016 年 12 月 3 日
It is worked, thank you.

サインインしてコメントする。


Andrei Bobrov
Andrei Bobrov 2016 年 12 月 3 日
編集済み: Andrei Bobrov 2016 年 12 月 3 日
a =datetime([2009, 10, 09, 12, 36, 00;2009 10 10 22 24 00])
out = a(1) + (0:minutes(12):diff(a))'
or
a = datenum([2009, 10, 09, 12, 36, 00;2009 10 10 22 24 00])
out = datestr(datenum(2009,10,09,12,(36:12:diff(a)*24*60)',0))
  1 件のコメント
Riyadh Muttaleb
Riyadh Muttaleb 2016 年 12 月 3 日
the second one is worked, thank you.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeDates and Time についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by