TEAP (Toolbox for Emotion Analysis using Physiological Signals) doc
Bulk_update_signal.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_update_signal.m
17 %> @brief Updates a signal in the bulk signal
18 %
19 %> @param BulkSig the bulk collection
20 %> @param signame the signal name (ex: 'HST')
21 %> @param sig the actual signal (ex: after HST_aqn_variable)
22 %
23 %> @retval BulkSig the bulksignal with the signal updated
24 function [BulkSig] = Bulk_update_signal(BulkSig, signame, sig)
25 %Copyright Frank Villaro-Dixon, Guillaume Chanel, 2014
26 
27 if(nargin ~= 3 || nargout ~= 1)
28  error('Usage: BulkSig = Bulk_add_signal(BulkSig, signame, sig)');
29  %Matlab does not have a print_usage like command
30 end
31 
32 Bulk_assert_mine(BulkSig);
33 BulkSig.(signame) = sig;
34 
Bulk_assert_mine
function Bulk_assert_mine(in BulkSignal)
Bulk_update_signal
function Bulk_update_signal(in BulkSig, in signame, in sig)
HST_aqn_variable
function HST_aqn_variable(in rawHST, in sampRate)
Copyright Frank Villaro-Dixon, 2014.