IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
blmisc_merge_rows.m
Go to the documentation of this file.
1 %> @brief Merges datasets serially (row-wise).
2 %>
3 %> All datasets must have same \ref nf, and the variables (features) must have same meanings and units.
5  properties
6  hierarchy = [];
7  end;
8 
9  methods
10  function o = blmisc_merge_rows(o)
11  o.classtitle = 'Row-wise';
12  end;
13  end;
14 
15  methods(Access=protected)
16  function data = do_use(o, datasets)
17  data = data_merge_rows(datasets);
18  end;
19  end;
20 end
21 
Base class for dataset mergers.
Definition: blmisc_merge.m:2
Merges datasets serially (row-wise).
function data_merge_rows(in datasets)