Is it possible to concatenate structures with the same fields in to one super structure?
Show older comments
I have structures c and c1, each contain 55 fields with the same names.
The field dimensions differ slightly in the x domain (ie):
c.E: [68×120 single]
c.N_z_cross: [68×120 single]
c.N_z_long: [68×120 single]
and
c1.E: [84×120 single]
c1.N_z_cross: [84×120 single]
c1.N_z_long: [84×120 single]
ideally I would like to create a structure that contains both continually (ie)
full_data.E: [152×120 single]
full_data.N_z_cross: [152×120 single]
full_data.N_z_long: [152×120 single]
Is there anyway to do this without manually concatenating each variable?
Thanks in advance.
1 Comment
"Is it possible to concatenate structures": yes, it is certainly possible to concatenate structures together:
[struct1,struct2]
will concatenate two structures together. But what you describe in the body of your question is how to to concatenate structure fields together, not the structures themselves. Both of these things are possible, but require very different code.
Accepted Answer
More Answers (3)
my_struct_fields = fieldnames(my_struct1);
super_struct=arrayfun(@(i) [my_struct1.(my_struct_fields{i});my_struct2.(my_struct_fields {i})],[1:numel(my_struct_fields)]','un',0);
my_dirty_trick = [my_struct_fields,super_struct]';
final_struct = struct(my_dirty_trick{:});
Thank you for officially accepting my answer
Rubens Rossi
on 19 Dec 2019
Edited: Rubens Rossi
on 19 Dec 2019
Thank you for the solution. I modified CatStructFields to handle my structures, which rows are 'channels'.
% Important: field position can be different between the two structures,
% but not the row position (e.g. channels), which do not have names.
S=varargin{1};
for idxV = 1:length(varargin)-1
T=varargin{idxV+1};
for k = 1:numel(F)
for h = 1:length(S)
S(h).(F{k}) = cat(dim,S(h).(F{k}),T(h).(F{k}));
end
end
end
aooEo
on 5 Oct 2022
0 votes
hello, i also faced the same problem, after seeing above answers i did not build a function and use the for cycle to solve the problem, maybe it is also a idea to encourage you.
fields = fieldnames(F1);
sum_F1 = repmat(empty, numel(F1)+numel(F1_fore), 1);
for k = 1:numel(fields)
for i = 1 : numel(F1)
sum_F1(i).(fields{k}) = F1(i).(fields{k});
end
end
for k = 1:numel(fields)
for i = numel(F1)+1 : numel(F1) + numel(F1_fore)
sum_F1(i).(fields{k}) = F1_fore(i-numel(F1)).(fields{k});
end
end
Categories
Find more on Creating and Concatenating Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!