MATLAB: Post-Training Analysis (postreg)

post-training analysis

Hi,
Good Day!
May I know hows the calculation of the code below:
[m,b,r] = postreg(evu(r,:),ev);
I am now have a data set with 90(sample)x14(dimensions), can I know the calculation to get the value of m, b and r?
Thanks.

Best Answer

m表示实际值和预测值的拟合系数,越靠近1,表明二者越接近。
b表示实际值和预测值的拟合截距,越靠近0 ,表明效果越好。
r表示实际值和预测值的相关系数。