IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
bmunit.m
Go to the documentation of this file.
1 %> @brief Representation of a Unit
2 %> @ingroup graphicsapi
3 %>
4 %> @sa bmtable
5 classdef bmunit < irobj
6  properties
8  %> ='%g'. @c sprintf() rendering format for numbers.
9  yformat = '%g';
10  %> =0. Whether to draw a Zero Line, usually true for units that assume negative and positive values.
11  flag_zeroline = 0;
12  %> =0. Whether the Zero should be included in the range.
13  flag_zero = 0;
14  %> =0. Whether to plot as histogram
15  flag_hist = 0;
16  end;
17 
18  methods
19  function o = bmunit()
20  o.classtitle = 'Unit';
21  end;
22  end;
23 end
Representation of a Unit.
Definition: bmunit.m:5
Peak Detector.
Definition: peakdetector.m:6
Analysis Session (AS) base class.
Definition: as.m:6
BioMarker Table.
Definition: bmtable.m:22
Base class.
Definition: irobj.m:33