IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
vis.m
Go to the documentation of this file.
1 %> @brief Visualization base class
2 %>
3 %> Vis sets figures titles
4 classdef vis < block
5  properties
6  %> =1. Whether the visualization is a graphic one (otherwise will be text). This is to help automatic GUI
7  %> behaviour.
8  flag_graphics = 1;
9  end;
10 
11  methods
12  function o = vis()
13  o.classtitle = 'Visualization';
14  o.flag_out = 0;
15  o.flag_trainable = 0;
16  o.flag_fixednf = 0;
17  end;
18  end;
19 end
Visualization base class.
Definition: vis.m:4
Base Block class.
Definition: block.m:2