Does anyone know how to allocate a vector with datetime elements?
24 次查看(过去 30 天)
显示 更早的评论
I tried at the biginning allocating zeros vector, but it is not allowed to write on them datetime while the loop is executing. I tried allocating empty cells but still seems not to work.
Thanks in advance.
0 个评论
采纳的回答
Chris Turnes
2015-11-24
编辑:Chris Turnes
2015-11-24
This question has appeared before, but there are two options I didn't see in that thread. One is to allocate an array of "Not-a-Time" elements with NaT:
d = NaT(1, 100);
Another is to do something like:
d(100) = datetime; % or NaT, or any datetime you want
which effectively does the same thing.
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Dates and Time 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!