IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
block_bypass.m
Go to the documentation of this file.
1 %> @brief Bypass block
2 %>
3 %> Use this block
4 classdef block_bypass < block
5  methods
6  function o = block_bypass(o)
7  o.classtitle = 'Bypass';
8  o.flag_bootable = 0;
9  o.flag_trainable = 0;
10  o.flag_ui = 0;
11  end;
12  end;
13 end
Bypass block.
Definition: block_bypass.m:4
Base Block class.
Definition: block.m:2