How to get the information from the fitting result?

2 views (last 30 days)
Hi,
I'm trying to do an exponential fitting and here is what I've done:
x = blabla;
y = blabla;
f = fit(x,y,'exp1');
then what f contains is like:
f =
General model Exp1:
f(x) = a*exp(b*x)
Coefficients (with 95% confidence bounds):
a = 150.8 (147.9, 153.7)
b = 0.0005431 (0.000538, 0.0005483)
I would like to get the information of a and b, at least their values, by command lines. How to do it?
Thank you,
Jixin

Accepted Answer

Shashank Prasanna
Shashank Prasanna on 23 Jul 2013
f.a
f.b
confint(f)

More Answers (0)

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!