how to find Mean Error(ME), RMSE, Std Deviation either in matlab or in exel
4 次查看(过去 30 天)
显示 更早的评论
i am working on my ME thesis in the field "Tuning of propagation Model at 1800 MHz for dense urban areas" got the plots for theoretical model like Free space,Cost 231 hata, Cost 231 WI,ECC,Sui, Erricson and also got the Actual measurements from field via drive test. Now i have to find these error metrics to compare the theoretical and actual data. if anyone can help please do.
0 个评论
采纳的回答
Star Strider
2015-9-3
Defining:
Err = model - actual; % Both Are Column Vectors
mean_err = mean(Err);
mean_abs_err = mean(abs(Err));
RMSE = sqrt(mean(Err.^2));
std_err = std(Err);
2 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Develop Apps Using App Designer 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!