| Curve Fitting Toolbox™ | ![]() |
coeffvals = coeffvalues(fun)
coeffvals = coeffvalues(fun) returns the values of the coefficients (parameters) of the cfit object fun as a 1-by-n vector coeffvals, where n = numcoeffs(fun).
load census
f = fittype('poly2');
coeffnames(f)
ans =
'p1'
'p2'
'p3'
formula(f)
ans =
p1*x^2 + p2*x + p3
c = fit(cdate,pop,f);
coeffvalues(c)
ans =
1.0e+004 *
0.0000 -0.0024 2.1130coeffnames,confint, predint, probvalues
![]() | coeffnames | confint | ![]() |
| © 1984-2008- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |