How to extract data from a cell array which contains structs?

24 次查看(过去 30 天)
Hi all,
I have the following problem: I have a cell array which contains in each cell a certain struct (structs have the same fields but different information). Suppose a certain field contain numbers. I want to create an array from all the numbers of this field from all the structs in the cell array. I can do this with a for loop but I guess there should be a better and a faster way. I tried to do it using 'deal' but failed.
Is there a better way?
Thanks, Alon

采纳的回答

Stephen23
Stephen23 2017-8-15
编辑:Stephen23 2017-8-15
Something like this might work for you:
cell2mat(cellfun(@(s)s.field,C,'uni',0))
it assumes that the data is able to be concatenated into one array, and that the structures are scalar. You will need to use the correct fieldname, and orient the input cell array and its contents to suit your data (you did not give any info about this). Here is an example:
>> C{1,1} = struct('A',1:3);
>> C{2,1} = struct('A',4:6);
>> C{3,1} = struct('A',7:9);
>> cell2mat(cellfun(@(s)s.A,C,'uni',0))
ans =
1 2 3
4 5 6
7 8 9
"Is there a better way?"
This task would be much simpler if you simply used one non-scalar structure, then you could simply do this:
cat(1,S.field)
[S.field]
vertcat(S.field)
etc.
For example:
>> S(1).A = 1:3;
>> S(2).A = 4:6;
>> S(3).A = 7:9;
>> vertcat(S.A)
ans =
1 2 3
4 5 6
7 8 9
Do you see how much simpler the code is, because I stored the data in a much better way?
  3 个评论
Guillaume
Guillaume 2017-8-15
In your example there's no reason for the cell array. You could just have a 4x1 struct:
S = vertcat(S{:});
it is then trivial to get the age matrix:
vertcat(S.Age)
If you insist on keeping the cell array, then as Stephen showed:
cell2mat(cellfun(@(s) s.Age, S, 'UniformOutput', false))
A lot more obscure and slower!
Alon Rozen
Alon Rozen 2017-8-15
Thanks Stephen and Guillaume :)
Now I understand it and it works.
As for not using a cell - I know it would be easier. I gave just a simple example to make things clear. My real cell array cannot be represented by a struct - it is a bit complicated.

请先登录,再进行评论。

更多回答(0 个)

类别

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

产品

Community Treasure Hunt

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

Start Hunting!

Translated by