forked from kndiaye/matlab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcatstructs.m
118 lines (100 loc) · 2.64 KB
/
catstructs.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
function [z]=catstructs(dim,x,y,keepfields)
% catstructs - Concatenate structures independently of field order/presence
%
% [Z]=catstructs(dim, X,Y) will concatenate structures X and Y into Z along
% dimension dim which MUST be 1 (ie. vertical concatenation)
%
% [Z]=catstructs(dim,X,Y,keepfields)
% keepfields: 1/0(default), keep non-matching fields. Missing values
% will be set to []
if ~isequal(dim,1)
error('Concatenated dimension MUST be 1 (until further development!)')
end
if ~isvector(x) | ~isvector(y)
error('Structures MSUT be unidimensional')
end
if nargin<4
keepfields=0;
end
z=x(:);
y=y(:);
fy=fieldnames(y);
if ~keepfields
f=fieldnames(z);
z=rmfield(z,f(~ismember(f,fy)));
y=rmfield(y,fy(~ismember(fy,f)));
fy=fy(ismember(fy,f));
end
% if isempty(z)
% z=y;
% end
for j=1:length(y)
for i=1:length(fy)
if i==1
z(end+1).(fy{i})= y(j).(fy{i});
else
z(end).(fy{i})= y(j).(fy{i});
end
end
end
return
% the following bugs when any argument is a struct array
function A = catstruct(varargin)
% CATSTRUCT - concatenate structures
%
% X = CATSTRUCT(S1,S2,S3,...) concates the structures S1, S2, ... into one
% structure X.
%
% A.name = 'Me' ;
% B.income = 99999 ;
% X = CATSTRUCT(A,B) ->
% X.name = 'Me' ;
% X.income = 99999 ;
%
% CATSTRUCT(S1,S2,'sorted') will sort the fieldnames alphabetically.
%
% If a fieldname occurs more than once in the argument list, only the last
% occurence is used, and the fields are alphabetically sorted.
%
% To sort the fieldnames of a structure A use:
% A = CATSTRUCT(A,'sorted') ;
%
% See also CAT, STRUCT, FIELDNAMES, STRUCT2CELL
% 2005 Jos van der Geest
N = nargin ;
error(nargchk(1,Inf,N)) ;
if ~isstruct(varargin{end}),
if isequal(varargin{end},'sorted'),
sorted = 1 ;
N = N-1 ;
if N < 1,
A = [] ;
return
end
else
error('Last argument should be a structure, or the string "sorted".') ;
end
else
sorted = 0 ;
end
for ii=1:N,
X = varargin{ii} ;
if ~isstruct(X),
error(['Argument #' num2str(ii) ' is not a structure.']) ;
end
FN{ii} = fieldnames(X) ;
VAL{ii} = struct2cell(X) ;
end
FN = cat(1,FN{:})
VAL = cat(1,VAL{:}) ;
[UFN,ind] = unique(FN) ;
if length(UFN) ~= length(FN),
warning('Duplicate fieldnames found. Last value is used.') ;
sorted = 1 ;
end
if sorted,
VAL = VAL(ind) ;
FN = FN(ind)
end
VF = reshape([FN VAL].',1,[]) ;
A = struct(VF{:}) ;