How to assign timetable as cell type?

Hello,
Can anybody tell me how can I assign a timetable as cell type, and store it inside a table as shown in the image below.

 Accepted Answer

Suppose TT is your timetable variable
cell_array = table2cell(timetable2table(TT)); %timetable to cell

4 Comments

Thank you for your answer! But how do I store the cells inside a table as shown in the attached screenshot.
How do you want your results, can you specify in small snippet?
I figured it out using the following code. Thanks for your help!
Table= table('Size',[30 2],'VariableTypes',["cell","string"]);
Table(1,1)={TT}; % TT is the timetable
Table(1,2)={'Label'};
It's my pleasure !

Sign in to comment.

More Answers (0)

Categories

Asked:

on 19 Feb 2020

Commented:

on 20 Feb 2020

Community Treasure Hunt

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

Start Hunting!