MATLAB: Obtaining the significance of coefficients from polyfit

polyfit

It is a simple matter to obtain the coefficients of a simple linear relationship using polyfit. For example coeff = polyfit(x,y,1).
But is there no built-in way to also extract the significance of the coefficients?

Best Answer

See if the File Exchange polyparci (link) function will do what you want.
Related Question