TEAP (Toolbox for Emotion Analysis using Physiological Signals) doc
Signal__set_absolute.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 Signal__set_absolute.m
17 %> @brief Sets the data of the signal to absolute or relative
18 %>
19 %> Example: for a HST signal, do you have samples like [37, 37.5, 37.6] or more
20 %> like [0, 0.5, 0.6] ? If true, the data is absolute (37), if false, it is relative (0).
21 %
22 %> @param Signal: the signal to set the flag
23 %> @param isAbsolute: true/false
24 %
25 %> @retval Signal: the same signal with the flag set
26 %
27 %> @author Copyright Frank Villaro-Dixon, 2014
28 function [Signal] = Signal__set_absolute(Signal, isAbsolute)
29 
30 if(nargin ~= 2 || nargout ~= 1)
31  error('Usage: Signal = Signal__set_absolute(Signal, isAbsolute)');
32 end
33 
34 Signal.isAbsolute = isAbsolute;
35 
36 
Signal__set_absolute
function Signal__set_absolute(in Signal, in isAbsolute)