IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
orhistgui_view1.m
Go to the documentation of this file.
1 %> @ingroup guigroup
2 %> @file
3 %> @brief Draws histogram in orhistgui
4 function orhistgui_view1()
5 handles = orhistgui_find_handles();
6 cla(handles.axes1, 'reset');
7 axes(handles.axes1); %#ok<*MAXES>
8 hold off;
9 blk = handles.remover;
10 if ~isempty(blk)
11  blk.draw_histogram();
12  set(handles.text_howmany, 'String', sprintf('%d of %d to be removed', blk.no-length(blk.map), blk.no));
13 else
14  set(handles.text_howmany, 'String', 'Outlier removal block not set');
15 end;
function orhistgui_view1()
function orhistgui_find_handles()
Base Block class.
Definition: block.m:2
function orhistgui(in varargin)