Does anyone know how to allocate a vector with datetime elements?
27 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Somayeh Amayeh
le 24 Nov 2015
Modifié(e) : Chris Turnes
le 24 Nov 2015
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 commentaires
Réponse acceptée
Chris Turnes
le 24 Nov 2015
Modifié(e) : Chris Turnes
le 24 Nov 2015
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 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Dates and Time dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!