How can I add a day on a datestr equation?

2 views (last 30 days)
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?

Accepted Answer

Star Strider
Star Strider on 27 Sep 2012
Edited: Star Strider on 27 Sep 2012
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

More Answers (0)

Categories

Find more on MATLAB in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!