How to get the information from the fitting result?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
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
0 Commenti
Risposta accettata
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Fit Postprocessing in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!