The warning states that there are possible numeric issues related to the fitting process, because your x
values are not centered around 0 and because you're using a determined model.
Using the curve fitting tool (cftool
) you can see that the difference between centering and scaling and not doing so is between a fitting SSE of 1.831e-24 and 6.664e-27, respectively.
In other words - in this specific case, centering and scaling your data practically doesn't matter and the warning can be safely ignored.
On a different note, unless you have a good reason to do so, you probably shouldn't be fitting the maximum-possible-degree polynomial to your data (known as "overfitting"), as this is believed to captured noise and not the underlying phenomenon. Consider using a lesser-degree polynomial (e.g. 6), spline
, pchip
etc.