Would anybody be able to elaborate on the difference between FindFit and NonlinearModelFit. I couldn't find any documentation stating the differences.
Tell me more
×
Mathematica Stack Exchange is a question and answer site for
users of Mathematica. It's 100% free, no registration required.
|
|
||||
closed as too localized by Ajasja, 0x4A4D♦ Nov 2 '12 at 9:24
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.
pts = RandomReal[10, {12, 2}]; Print[LinearModelFit[Sort@pts, {1, x, x^2}, x]["ANOVATable"]]; Print[NonlinearModelFit[Sort@pts, a x^2 + b x + c, {a, b, c}, x]["ANOVATable"]];– Chris Degnen Nov 2 '12 at 9:46