TEAP (Toolbox for Emotion Analysis using Physiological Signals) doc
Signal_plot1D.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_plot1D.m
17 %> @brief Plots a signal: value vs time, between startT and entT.
18 %> @c Signal_plot1D(sig); @c Signal_plot1D(sig, start); @c Signal_plot1D(sig, start, end);
19 %> @attention NOTA BENE: if you want to display a bulk signal instead, use Bulk_plot(Bulk);
20 %
21 %> @param Signal: the sigal to plot
22 %> @param startT: the start time, in frames (optional)
23 %> @param endT: the end time, or 0 if all the signal (optional)
24 %
25 %> @author Copyright Frank Villaro-Dixon, 2014
26 function Signal_plot1D(Signal, startT, endT)
27 
28 raw = Signal__get_raw(Signal);
29 samprate = Signal__get_samprate(Signal);
30 
31 name = Signal__get_signame(Signal);
32 signal_unit = Signal__get_unit(Signal);
33 
34 if(nargin == 2)
35  raw = raw(startT:end);
36 elseif(nargin == 3)
37  if(endT == 0)
38  raw = raw(startT:end);
39  else
40  raw = raw(startT:endT);
41  end
42 end
43 
44 
45 xes = [1:length(raw)];
46 
47 seconds = xes / samprate;
48 
49 plot(seconds, raw);
50 
51 
52 offset = Signal__get_offset(Signal);
53 
54 %The signal may be offseted with Signal__get_window. If so, say it
55 if(offset ~= 0)
56  offsetT = offset / samprate;
57  xlabel(['Seconds - ' num2str(offsetT) ' (offset)']);
58 else
59  xlabel('Seconds');
60 end
61 
62 %The y label title
64  comments = ' (low passed)';
65 else
66  comments = '';
67 end
68 
69 ylabel([name ' (' signal_unit ')' comments]);
70 
71 
72 %The graph title
73 title([name ' vs Seconds']);
74 
75 
Signal__get_samprate
function Signal__get_samprate(in Signal)
Signal__has_preproc_lowpass
function Signal__has_preproc_lowpass(in Signal)
Signal__get_window
function Signal__get_window(in Signal, in startT, in endT)
Signal_plot1D
function Signal_plot1D(in Signal, in startT, in endT)
Signal__get_raw
function Signal__get_raw(in Signal)
Signal__get_unit
function Signal__get_unit(in Signal)
Bulk_plot
function Bulk_plot(in BulkSig, in title)
Signal__get_offset
function Signal__get_offset(in Signal)
Signal__get_signame
function Signal__get_signame(in Signal)