TEAP (Toolbox for Emotion Analysis using Physiological Signals) doc
Bulk_assert_mine.m
Go to the documentation of this file.
1 %This file is part of TEAP.
2 %
3 %TEAP is free software: you can redistribute it and/or modify
4 %it under the terms of the GNU General Public License as published by
5 %the Free Software Foundation, either version 3 of the License, or
6 %(at your option) any later version.
7 %
8 %TEAP is distributed in the hope that it will be useful,
9 %but WITHOUT ANY WARRANTY; without even the implied warranty of
10 %MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 %GNU General Public License for more details.
12 %
13 %You should have received a copy of the GNU General Public License
14 %along with TEAP. If not, see <http://www.gnu.org/licenses/>.
15 %
16 %> @file Bulk_assert_mine.m
17 %> @brief Asserts that the signal is a TEAP bulk signal
18 %
19 %> @param BulkSignal the signal to test
20 %Copyright Frank Villaro-Dixon, 2014
21 
22 function Bulk_assert_mine(BulkSignal)
23 
24 if(nargin ~= 1)
25  error('Usage: Bulk_assert_mine(BulkSignal)');
26 end
27 
28 if(length(BulkSignal) ~= 1)
29  error(['You seem to have given a bulk signal with multiple epochs. ' ...
30  'Could you please choose the epoch you want (eg: with Bulk(1))']);
31 end
32 
33 if(isfield(BulkSignal, 'TEAP'))
34  if(BulkSignal.TEAP == 'B')
35  return;
36  end
37 end
38 
39 error('The signal given is not a TEAP one')
40 
41 %!error(Bulk_assert_mine(42))
42 %!error(Bulk_assert_mine())
43 
Bulk_assert_mine
function Bulk_assert_mine(in BulkSignal)