How can I convert this table to a cell array as shown in the screenshot?

2 次查看(过去 30 天)
I have a CSV file that looks like thistable.jpg and I would like to convert it to two cell arrays by id.
cell1.jpg
One array contains all "t" of the same id (shown above), and the other array contains all "measure" of the same id as shown below
.cell2.jpg

采纳的回答

Andrei Bobrov
Andrei Bobrov 2019-9-5
编辑:Andrei Bobrov 2019-9-6
tout = varfun(@(x){x(:)'},T,'GroupingVariables','id');
C = tout{:,3:end};
measure = C(:,1);
t = C(:,2);
  4 个评论
zhongjie
zhongjie 2019-9-6
Sorry I'm new to this community, didn't really notice that "Accept this answer" button. My bad!

请先登录,再进行评论。

更多回答(1 个)

Anmol Dhiman
Anmol Dhiman 2019-9-5
Use the following commands
T = readtable('filename.csv')
c{1} = T{T.id==1,'measure'}
c{2} = T{T.id==2,'measure'}

类别

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

产品


版本

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by