Does anyone know how to allocate a vector with datetime elements?

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.

 採用された回答

Chris Turnes
Chris Turnes 2015 年 11 月 24 日
編集済み: Chris Turnes 2015 年 11 月 24 日

10 投票

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 件)

カテゴリ

ヘルプ センター および File ExchangeDates and Time についてさらに検索

製品

質問済み:

2015 年 11 月 24 日

編集済み:

2015 年 11 月 24 日

Community Treasure Hunt

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

Start Hunting!

Translated by