function params_row = getParams(dataset, index)
% getParams - Get the parameter values of a dataset item.
%
% Usage:
% params_row = getParams(dataset, index)
%
% Description:
%
% Parameters:
% dataset: A params_tests_dataset.
% index: Index of item in dataset.
%
% Returns:
% params_row: Parameter values in the same order of paramNames
%
% See also: itemResultsRow, params_tests_dataset, paramNames, testNames
%
% $Id$
%
% Author: Cengiz Gunay <cgunay@emory.edu>, 2004/12/06
% 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.
%item = getItem(dataset, index);
%params_row = item.pulse_mags_pA(dataset.mags);
% Only value to return
params_row = [index dataset.cipmag];