| Curve Fitting Toolbox™ |  |
probvalues - Problem-dependent parameter values of cfit object
Syntax
pvals = probvalues(fun)
Description
pvals = probvalues(fun) returns
the values of the problem-dependent (fixed) parameters of the cfit object fun as a row vector.
Example
f = fittype('(x-a)^n + b','problem',{'a','b'});
coeffnames(f)
ans =
'n'
probnames(f)
ans =
'a'
'b'
load census
c = fit(cdate,pop,f,'problem',{cdate(1),pop(1)},...
'StartPoint',2);
coeffvalues(c)
ans =
0.9877
probvalues(c)
ans =
1.0e+003 *
1.7900 0.0039See Also
fit, fittype, probnames
 | probnames | | set |  |