Converting arrays in a cell to tables

1 view (last 30 days)
BN
BN on 29 Mar 2020
Commented: BN on 29 Mar 2020
Hey all, I want to know how I can convert all cell arrays in mycell.mat to table?so at the end I would have a cell that have tables as arrays.
newcell = cellfun(@array2table,mycell); % not working
Thank you

Accepted Answer

Ameer Hamza
Ameer Hamza on 29 Mar 2020
Are you looking for something like this?
newcell = cellfun(@array2table,mycell, 'UniformOutput', 0);

More Answers (0)

Categories

Find more on Tables in Help Center and File Exchange

Products


Release

R2018b

Community Treasure Hunt

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

Start Hunting!