How can I add a day on a datestr equation?

4 ビュー (過去 30 日間)
jjlivestrong
jjlivestrong 2012 年 9 月 27 日
I am having trouble understanding the serial number concept of date commands.
I want to sum five days on the command datestr(now)
I am proceding the following way
x = datestr(now,1)
ans =
27-Sep-2012
I want to add up five days (y = 7 days) so that x + y =
2-Oct-2012
Can you please help?

採用された回答

Star Strider
Star Strider 2012 年 9 月 27 日
編集済み: Star Strider 2012 年 9 月 27 日
Another option is addtodate.
For example:
x = datestr(now,1)
y = 5;
z = addtodate(datenum(x), y, 'day');
zs = datestr(z,1)
gives:
x =
27-Sep-2012
zs =
02-Oct-2012

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeFunctions についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by