TEAP (Toolbox for Emotion Analysis using Physiological Signals) doc
Signal_plot.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_plot.m
17 %> @brief Plots a signal: value vs time, between startT and entT.
18 %> @c Signal_plot(sig); @c Signal_plot(sig, start); @c Signal_plot(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_plot(Signal, startT, endT)
27 
28 raw = Signal__get_raw(Signal);
29 
30 if(nargin < 2)
31  startT = 1;
32  endT = 0;
33 elseif(nargin < 3)
34  endT = 0;
35 end
36 
37 %mainly (only?) for EEG
38 if(isstruct(raw))
39  figure; %FIXME: embed within
40  %use things like parent=axes('Parent'); or things like that
41 
42  fields = fieldnames(raw);
43  sq = ceil(sqrt(size(fields, 1)));
44  for i = [1:size(fields)]
45  subplot(sq, sq, i);
46 
47  %This is a copy !
48  Sig_copy = Signal__set_raw(Signal, raw.(fields{i}));
49  Sig_copy = Signal__set_signame(Sig_copy, [Signal__get_signame(Signal) ' - ' ...
50  fields{i}]);
51 
52  Signal_plot(Sig_copy, startT, endT);
53  end
54  return
55 else %for 1D signals
56  Signal_plot1D(Signal, startT, endT);
57 end
58 
Signal__set_raw
function Signal__set_raw(in Signal, in raw)
Signal_plot1D
function Signal_plot1D(in Signal, in startT, in endT)
Signal__get_raw
function Signal__get_raw(in Signal)
Signal__set_signame
function Signal__set_signame(in Signal, in nameStr)
Bulk_plot
function Bulk_plot(in BulkSig, in title)
Signal_plot
function Signal_plot(in Signal, in startT, in endT)
Signal__get_signame
function Signal__get_signame(in Signal)