IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
irlog.m
Go to the documentation of this file.
1 %> @brief Log base class
2 %>
3 %> <h3>Definition and purpose</he>
4 %> irobj descendant with arbitrary structure to carry outputs of blocks.
5 classdef irlog < irobj
6  methods
7  function o = irlog(o)
8  o.classtitle = 'Log';
9  o.color = [250, 234, 130]/255;
10  end;
11  end;
12 end
Log base class.
Definition: irlog.m:5
Base class.
Definition: irobj.m:33