MATLAB: How to extract the time column of a timetable

MATLAB and Simulink Student Suitetimecolumntimetable

Hi,
I need to extrct the time column of a timetable as I need to manipulate it.
any Ideas?

Best Answer

variant
a = rand(20,6);
date1 = datetime(2019,4,19) + hours(cumsum(70*rand(20,1)));
TT = array2timetable(a,'RowTimes',date1);
date_out = TT.Time;