How to extract data from a cell array which contains structs?
27 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Alon Rozen
el 15 de Ag. de 2017
Comentada: Alon Rozen
el 15 de Ag. de 2017
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
0 comentarios
Respuesta aceptada
Stephen23
el 15 de Ag. de 2017
Editada: Stephen23
el 15 de Ag. de 2017
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 comentarios
Guillaume
el 15 de Ag. de 2017
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!
Más respuestas (0)
Ver también
Categorías
Más información sobre Structures en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!