How to get the information from the fitting result?

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

 採用された回答

Shashank Prasanna
Shashank Prasanna 2013 年 7 月 23 日

0 投票

f.a
f.b
confint(f)

1 件のコメント

Jixin
Jixin 2013 年 7 月 23 日
That's exactly what I need.
Thank you, Shashank.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeFit Postprocessing についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by