Combine date and duration into single datetime column
16 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Enrico Gambini
il 21 Feb 2022
Commentato: Star Strider
il 21 Feb 2022
Hello!
I have a vector containing the data in a datetime format (MM/dd/uuuu)and the vector containing the hours of the days in duration format(hh:mm:ss)
I want to combine the two vectors in order to get a single datetime vector having date and hour togheter.
I tried this code but it seems that is not working:
new_datetime=date+hour;
0 Commenti
Risposta accettata
Star Strider
il 21 Feb 2022
Add them —
DT = datetime(repmat([2018 01 01], 5, 1))
DU = duration('00:00:00') + 5*minutes(0:4)'
Combined = DT + DU
.
8 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Dates and Time in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!