function param_ranges = getParamRanges(a_ps, props)
% getParamRanges - Gets the parameter ranges of all contained functions.
%
% Usage:
% param_ranges = getParamRanges(a_ps, props)
%
% Parameters:
% a_ps: A param_mult object.
% props: A structure with any optional properties.
% (passed to param_func/getParamRanges)
%
% Returns:
% param_ranges: Vector of parameter values.
%
% Description:
%
% Example:
% Get absolute parameter values:
% >> params = getParamRanges(a_ps)
% Set relative ratios:
% >> param_ratios = getParamRanges(a_ps, struct('direct', 1))
%
% See also: param_func, param_mult
%
% $Id: getParamRanges.m 88 2010-04-08 17:41:24Z cengiz $
%
% Author: Cengiz Gunay <cgunay@emory.edu>, 2010/03/04
% Copyright (c) 2010 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
param_ranges = getParamRanges(a_ps.param_func, props);
for a_f = struct2cell(a_ps.f)'
a_f = a_f{1};
param_ranges = [ param_ranges, getParamRanges(a_f, props) ];
end