Why value from predicted value from the regression equation and predicted value directly from matlab are not matching?
조회 수: 1 (최근 30일)
이전 댓글 표시
I ploted the regression model using following codes (4 input P,V,T,H, and 1 output,TS)
X = [P, T, V, H, P.*T, P.*V, P.*H, T.*V, T.*H, V.*H, P.^2, T.^2, V.^2, H.^2];
Y = TS;
mdl = fitlm(X, Y);
disp(mdl);
coefficients = mdl.Coefficients.Estimate;
disp(coefficients);
yfit = predict(mdl,X)
I frormed the regression equation and calculated the predicted in excel, ideally it should match with the value I am getting from yfit = predict(mdl,X)
But it does not match. Can anyone explain why?
댓글 수: 1
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Regression에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!