Combine date and duration into single datetime column
16 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Star Strider
2022-2-21
Add them —
DT = datetime(repmat([2018 01 01], 5, 1))
DU = duration('00:00:00') + 5*minutes(0:4)'
Combined = DT + DU
.
8 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Dates and Time 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!