MATLAB: Using fitlm for multiple linear model: Does this function automatically standardise the variables

fitlmlinear modelmulitple variablesstandardisationStatistics and Machine Learning Toolbox

Hi!
I just read about standardisation and that it is recommended to standardise variables in a multiple linear model. My question is now whether fitlm has done this automatically or if i need to do it?
Thank you for your help!

Best Answer

No fitlm doesn't not standardize your data. You will have to do this prior to calling fitlm:
Related Question