How to arrange datetime vertically
Mostra commenti meno recenti
Hello, How can I make my datetime appear in rows. Say, 01/Feb/2012 to 31/Dec/2021. I tried using transpose but it did not work. I want the date to appear vertically showing every date from 01/Feb/2012 to 31/Dec/2021 instead of horizontally.
Risposta accettata
Più risposte (1)
t0 = datetime(2012,1,1) ;
t1 = datetime(2021,12,31) ;
t = (t0:t1)' ;
t(1:10)
1 Commento
Lemea Akara
il 29 Giu 2021
Categorie
Scopri di più su Dates and Time in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!