How to explicit a cell array into a table

1 次查看(过去 30 天)
Hi everyone!
I'm trying to create a table with some informations as below:
Dtc=transpose(DTC);
Lamp=transpose(Lamp_config);
Verification=transpose(answer);
T=table(Dtc,Lamp,Verification)
Verification column is a cell array like below:
and I'd like to explicit in the table the (i,j) cells which are like:
Which is the best way to do it?
Thank you so much in advance!!!
  4 个评论

请先登录,再进行评论。

回答(1 个)

Walter Roberson
Walter Roberson 2022-6-19
vlens = cellfun(@length, T.Verification);
maxvlen = max(vlens);
T.Verification = cellfun(@(C) [C;strings(maxveln-length(C),1)].', T.Verification, 'uniform', 0);
T = splitvars(T);
  2 个评论
Pas182
Pas182 2022-6-19
编辑:Pas182 2022-6-19
@Walter Roberson thank you so much for your help. I'm getting this error:
can you help on this? P.S. I'm using Matlab 2016b version
Walter Roberson
Walter Roberson 2022-6-23
T.Verification = cellfun(@(C) [C, strings(1,maxveln-length(C))].', T.Verification, 'uniform', 0);

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Cell Arrays 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by