function results = getResults(s, plotit)
% getResults - Runs all tests defined by this class and return them in a
% structure.
%
% Usage:
% results = getResults(s)
%
% Description:
%
% Parameters:
% s: A spikes object.
%
% Returns:
% results: A structure associating test names to values
% in ms and mV (or mA).
%
% See also: spikes
%
% $Id$
%
% Author:
% Cengiz Gunay <cgunay@emory.edu>, 2004/09/13
% 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.
if ~ exist('plotit', 'var')
plotit = 0;
end
% Check for empty object first.
if isempty(s.times)
results.spikeRate = 0;
results.spikeRateISI = 0;
results.ISICV = NaN;
return;
end
% convert all to ms/mV(mA)
ms_factor = 1e3 * s.dt;
% Run tests
results.spikeRate = spikeRate(s);
results.spikeRateISI = spikeRateISI(s);
results.ISICV = ISICV(s);