function h = plot(t)
% plot - Plots a cip_trace_profile object.
%
% Usage:
% h = plot(t)
%
% Parameters:
% t: A cip_trace_profile object.
%
% Returns:
% h: Plot handle(s).
%
% Description:
% Plots contents of this object.
%
% $Id$
%
% Author: Cengiz Gunay <cgunay@emory.edu>, 2004/09/15
% Copyright (c) 2007 Cengiz Gunay <cengique@users.sf.net>.
% This work is licensed under the Academic Free License ("AFL")
% v. 3.0. To view a copy of this license, please look at the COPYING
% file distributed with this software or visit
% http://opensource.org/licenses/afl-3.0.php.
% Allow vectors of objects to be plotted at the same time
if length(t) > 1
for i=1:length(t)
plot(t(i));
end
else
ht = plotFigure(plot_superpose([plotData(t.trace), plotData(t.spikes)], {}, ...
get(t, 'id')));
% TODO: Hack, fix it
[hss1 hss2] = plotSpikeShape(get(t, 'spont_spike_shape'), 'Spont');
[hss1 hss2] = plotSpikeShape(get(t, 'pulse_spike_shape'), 'Pulse');
super_plot = set(superposePlots([plotResults(t.spont_spike_shape) ...
plotResults(t.pulse_spike_shape)]), ...
'legend', {});
plotFigure(super_plot);
h = [ht, hss1, hss2];
end
function [hss1, hss2] = plotSpikeShape(spsh, name)
if ~ isempty(spsh.trace.data)
pr = plotResults(spsh);
hss1 = plotFigure(set(pr, 'title', [ name ' ' get(pr, 'title')] ));
pp = plotTPP(spsh);
hss2 = plotFigure(set(pp, 'title', [ name ' ' get(pp, 'title')]));
else
hss1 = NaN;
hss2 = NaN;
end