IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
mutant.m
Go to the documentation of this file.
1 %> @brief "Mutant" block / metablock
2 %>
3 %> At train(), becomes the output of its block
4 classdef mutant < block
5  properties
6  block;
7  end;
8 
9  methods
10  function o = mutant()
11  o.flag_ui = 0;
12  o.flag_trainable = 1;
13  end;
14 
15  function z = train(o, input)
16  b = o.block.boot();
17  b = b.train(input);
18  z = b.use(input);
19  end;
20  end;
21 end
Base Block class.
Definition: block.m:2
"Mutant" block / metablock
Definition: mutant.m:4