IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
blmisc_merge_cols.m
Go to the documentation of this file.
1 %> @brief Merges datasets parallelly (column-wise).
2 %>
3 %> Needless say, datasets must have same \ref no, and be representations of the same physical data.
5  properties
6  hierarchy = [];
7  end;
8 
9  methods
10  function o = blmisc_merge_cols(o)
11  o.classtitle = 'Column-wise';
12  end;
13  end;
14 
15  methods(Access=protected)
16  function data = do_use(o, datasets)
17  data = data_merge_cols(datasets);
18  end;
19  end;
20 end
21 
Merges datasets parallelly (column-wise).
Base class for dataset mergers.
Definition: blmisc_merge.m:2
function data_merge_cols(in datasets)