IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
vis_log_as_fsel.m
Go to the documentation of this file.
1 %> @brief Visual representation of selected features
2 classdef vis_log_as_fsel < vis
3  properties
4  data_hint = [];
5  flag_mark = 0;
6  end;
7 
8  methods
9  function o = vis_log_as_fsel(o)
10  o.classtitle = 'Features Selected';
11  o.inputclass = 'log_as_fsel';
12  end;
13  end;
14 
15  methods(Access=protected)
16  function out = do_use(o, obj)
17  out = [];
18  obj.draw(o.data_hint, o.flag_mark);
19  set_title(o.classtitle, obj);
20  end;
21  end;
22 end
Visual representation of selected features.
Log generated by an as_fsel class.
Definition: log_as_fsel.m:2
Visualization base class.
Definition: vis.m:4
function set_title(in s, in obj)