IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
vis_hists.m
Go to the documentation of this file.
1 %> @brief Visualization - Histograms from @ref log_hist
2 %>
3 %> This visualization plots the histograms for each moment of a Forward Feature Selection: first feature selected; second feature
4 %> selected ...
5 %>
6 %> @sa uip_vis_hists.m
7 classdef vis_hists < vis
8  properties
9  data_hint = [];
10  idx_hist = 1;
11  flag_group = 0;
12  end;
13 
14  methods
15  function o = vis_hists(o)
16  o.classtitle = 'Feature-rank-wise Histograms';
17  o.inputclass = {'log_hist'};
18  end;
19  end;
20 
21  methods(Access=protected)
22  function out = do_use(o, obj)
23  out = [];
24  obj.draw_hists(o.idx_hist, o.data_hint, o.flag_group);
25  end;
26  end;
27 end
Generated by subsetsprocessor, carries a histogram.
Definition: log_hist.m:2
Visualization base class.
Definition: vis.m:4
Visualization - Histograms from log_hist.
Definition: vis_hists.m:7