1 %> @brief Re-sets the x-axis of a dataset
using 2-element range vector provided.
6 %> 2-element vector containing what are supposed to be the first and last elements of the x-axis vector of the
7 %> dataset. The
class is prepared to handle both the direct and reverse cases.
12 function o = blmics_fearange(o)
13 o.classtitle = 'Re-set x-axis';
18 methods(Access=protected)
19 function data = do_use(o, data)
20 data.fea_x = linspace(o.range(1), o.range(2), data.nf);
Re-sets the x-axis of a dataset using 2-element range vector provided.