datetime with certain number of rows
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have a datetime array with 1000 rows.
I want to extend it to 1200 rows. The last 200 rows should be just a repetition of the last date.
How can I do this?
2 commentaires
Samuele Sandrini
le 9 Avr 2020
Modifié(e) : Samuele Sandrini
le 9 Avr 2020
We can do like this (is a little example):
A=datetime('now') %i create a variable datetime
A(2:201,1)=A(end,1)
Réponses (0)
Voir également
Catégories
En savoir plus sur Numeric Types dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!