MATLAB: Do the coeffvalues not produce a sensible result

coeffvaluesMATLAB

I have a script that uses the fit fuction on some data using a poly55 fit type. I then use this to get the coeffvalues for the fittted curve and try to replot the surface using the coeffvalues but the result produced is orders of magnitude different from the original data.
Script attached as well as some example data.
Can anyone explain what is happening or recommend a way forward?

Best Answer

If you use the 'Normalize','on' fitting option, your polynomial has powers of (x-meanx)/stdx and (y-meany)/stdy instead of x and y.