| Author |
Comment/Response |
Automatic Method
|
05/12/08 10:29am
I wrote this code:
model = a Exp[b x];
A = {10, 5, 3, 2, 1, 0.9, 0.8};
AFit = FindFit[A, model, {a, b}, x, Method -> Automatic];
AF = Table[model /. AFit, {x, 1, 7}];
ListLinePlot[{A, AF}]
How can I find out what Method Mathematica used?
Can such function like AbsoluteOptions[] help me?
Like in this example:
AbsoluteOptions[
Plot[Sin[x], {x, 0, 2 Pi}, PlotRange -> Automatic], PlotRange]
URL: , |
|