I have an array of date time values. How do I separate Date and time and enter it in separate columns in excel?
2 views (last 30 days)
Show older comments
The dataset is a 83520x10 table so how would I do that for something of this size?
0 Comments
Answers (2)
Jeremy Hughes
on 27 Feb 2019
Assuming you have a datetime array called DateAndTime which is a column vector:
Date = dateshift(DateAndTime,'start','day')
Time = timeofday(DateAndTime)
writetable(table(Date,Time),'file.xlsx')
0 Comments
See Also
Categories
Find more on Dates and Time in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!