function a_ps = setParams(a_ps, param_vals, props)
% setParams - Sets the parameters of function.
%
% Usage:
% a_ps = setParams(a_ps, param_vals, props)
%
% Parameters:
% a_ps: A param_func object.
% param_vals: Vector of new parameter values.
% props: A structure with any optional properties.
% direct: If 1, set parameters directly as relative range ratios (default=1).
% onlySelect: If 1, return only parameters listed in selectParams prop.
%
% Returns:
% a_ps: Object with new parameter values.
%
% Description:
%
% Example:
% Set absolute parameter values:
% >> a_ps = setParams(a_ps, [10 20])
% Set relative ratios:
% >> a_ps = setParams(a_ps, [.4 .7], struct('direct', 1))
%
% See also: param_func
%
% $Id: setParams.m 88 2010-04-08 17:41:24Z cengiz $
%
% Author: Cengiz Gunay <cgunay@emory.edu>, 2009/06/01
% Copyright (c) 2009 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('props', 'var')
props = struct;
end
% defaults
props = mergeStructs(props, struct('direct', 1));
props = mergeStructs(props, get(a_ps, 'props'));
if isfield(props, 'onlySelect') && props.onlySelect == 1 ...
&& isfield(props, 'selectParams')
param_idx = tests2cols(a_ps, props.selectParams);
else
param_idx = ':';
end
param_vals = param_vals(:)'; % row vector only
if ~ isfield(props, 'direct') || props.direct == 0
param_vals = ...
convertParams2Ratios(param_vals, ...
mergeStructs(struct('onlyIdx', param_idx), ...
props));
end
all_param_vals = get(a_ps, 'data');
all_param_vals(1, param_idx) = param_vals;
a_ps = set(a_ps, 'data', all_param_vals);