IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
as.m
Go to the documentation of this file.
1 %> @brief Analysis Session (AS) base class.
2 %>
3 %> Analysis Session is a block that outputs some @ref irlog, and its internal calculation may take some time, usually with loops etc
4 %>
5 %> Often the @ref irlog output is of a class that is specific to the @ref as itself.
6 classdef as < block
7  methods
8  function o = as()
9  o.classtitle = 'Analysis Session';
10  o.flag_bootable = 0;
11  o.flag_trainable = 0;
12  o.color = [211, 129, 229]/255;
13  end;
14  end;
15 end
Base Block class.
Definition: block.m:2
Analysis Session (AS) base class.
Definition: as.m:6
Log base class.
Definition: irlog.m:5