convert date and time in seconds

83 views (last 30 days)
Nivodi
Nivodi on 4 Sep 2018
Commented: jonas on 5 Sep 2018
Hello everyone, I have a table with several variables. Among others, I have 2 columns with date and time. These 2 columns are cells with strings ('iscellstr'=1 and 'ischar'=0). How can I convert them in seconds? thank you very much!
  7 Comments
jonas
jonas on 4 Sep 2018
Not sure what you are doing, but that is not the correct syntax. I wrote some lines of code in the answer section to give you an idea of what I meant.
Nivodi
Nivodi on 4 Sep 2018
I wrote that before I saw the answer that you wrote below. I am working on it now.

Sign in to comment.

Accepted Answer

jonas
jonas on 4 Sep 2018
Edited: jonas on 4 Sep 2018
Here's a solution with datetime
data=load('matlab.mat')
T=data.T1_B6_09032017;
TimeOfDay=duration(T.time)
Date=datetime(T.date,'inputformat','dd.MM.yyyy')
t=Date+TimeOfDay;
If you really want the output in seconds, here is how you calculate the duration from the first measurement:
ts=seconds(t-t(1));
I suggest you then put the data in a timetable
TT=timetable(t,T);
TT=splitvars(TT);
  8 Comments
Nivodi
Nivodi on 5 Sep 2018
Thank you Jonas for your time and help!
jonas
jonas on 5 Sep 2018
My pleasure! Don't forget to accept if the answer was helpful!

Sign in to comment.

More Answers (0)

Categories

Find more on Data Type Conversion in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!