RMSE, R square question calculation
이전 댓글 표시
i have my confusion matrix as C.mat
8263 20 39
2 3826 14
43 7 4431
My predicted class labels are Ypred and actual labels are Ytest. Ypred size is 16000*1 and Ytest 16000*1
I am trying to calculate the R sqaure and RMSE and I defined the following:
rmse = sqrt(immse(Ypred, Ytest));
I also tried to use the built in function to generate R SQUARE between two vectors
mdl=fitlm(Ypred,Ytest,'linear')
But both didnt work. Is there something I am missing?
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Linear Predictive Coding에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!