IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
blmisc_split_groups.m
Go to the documentation of this file.
1 %> @brief Splits dataset per group, one dataset per group
2 %>
3 %> Attention: this operation creates one dataset per group, this can be a lot!
4 %>
6  methods
7  function o = blmisc_split_groups(o)
8  o.classtitle = 'Groups';
9  o.flag_params = 0;
10  end;
11  end;
12 
13  methods(Access=protected)
14  function datasets = do_use(o, data)
15  datasets = data_split_groups(data);
16  end;
17  end;
18 end
19 
Base class for blocks that split one dataset into many.
Definition: blmisc_split.m:2
function data_split_groups(in data)
Splits dataset per group, one dataset per group.