IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
bmunit_perc.m
Go to the documentation of this file.
1 %> @brief Unit - percentage
2 %> @ingroup graphicsapi
3 %>
4 %> @sa bmtable
5 classdef bmunit_perc < bmunit
6  methods
7  function o = bmunit_perc(o)
8  o.classtitle = 'Percentage';
9  o.yformat = '%5.1f%%';
10  o.flag_zeroline = 0;
11  end;
12  end;
13 end
Representation of a Unit.
Definition: bmunit.m:5
BioMarker Table.
Definition: bmtable.m:22
Unit - percentage.
Definition: bmunit_perc.m:5