IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
bmunit_hist.m
Go to the documentation of this file.
1 %> @brief Unit - Histogram
2 %> @ingroup graphicsapi
3 %>
4 %> Same as Integer, but plots as histogram (stem plot). Affects @ref bmtable
5 %>
6 %> @sa bmtable
7 classdef bmunit_hist < bmunit
8  methods
9  function o = bmunit_hist(o)
10  o.classtitle = 'Histogram';
11  o.yformat = '%3d';
12  o.flag_zeroline = 0;
13  o.flag_zero = 1;
14  o.flag_hist = 1;
15  end;
16  end;
17 end
Unit - HistogramSame as Integer, but plots as histogram (stem plot). Affects bmtable.
Definition: bmunit_hist.m:7
Representation of a Unit.
Definition: bmunit.m:5
Analysis Session (AS) base class.
Definition: as.m:6
BioMarker Table.
Definition: bmtable.m:22