MATLAB: Is there a “regress” function in Matlab R2014a

MATLABmatlab r20141

I am trying to link some datasets through multiple linear regression, but I cannot find the regress function, nor does it appear in help. Is there still such function?

Best Answer

Yes, but it is in the Statistics Toolbox, not base Matlab.
You can build a general model and use the backlash operator "\" to solve for the least squares coefficients or there are other tools in the Curve Fitting Toolbox as well if have it but not Statistics.
Related Question