IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
bmart.m
Go to the documentation of this file.
1 %> @brief Art stuff for BioMarker Tables
2 %> @ingroup graphicsapi
3 %>
4 %> @sa bmtable
5 classdef bmart < irobj
6  properties
7  marker = 'o';
8  markerscale = 1;
9  % color already defined in irobj.
10  end;
11 
12  methods
13  function o = bmart(o)
14  o.classtitle = 'Art';
15  end;
16  end;
17 end
Art stuff for BioMarker Tables.
Definition: bmart.m:5
BioMarker Table.
Definition: bmtable.m:22
Base class.
Definition: irobj.m:33