Error on converting datestr to datenum

10 次查看(过去 30 天)
Here is my code :
time0=200;
formatOut = 'yyyy-MM-dd HH:mm:SS';
t{1}=datestr(now,formatOut);
for i=2:length(time0)
t0=datenum(t{i-1});
t2=(addtodate(t0,2,'second'));
t{i}=datestr(t2);
end
ch=t;
t = datetime(ch,'InputFormat','yyyy-MM-dd HH:mm:SS');
I want to simply create a data stream by adding in first time step(getting real time) 2 seconds in each time step.And then Hold all this values in a datetime format(it has to be for my needs in this format).
But when i run my script i get this error:
"Error using datetime (line 602)Unable to parse date/time text using the format 'yyyy-MM-dd HH:mm:SS'."
Is there any tip?

回答(1 个)

Star Strider
Star Strider 2017-11-10
The correct format is 'yyyy-MM-dd HH:mm:ss'.
However, there is a much easier way to create your datetime array:
t0 = datetime('now');
tv = t0 + seconds(2:2:200);

类别

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