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.

채택된 답변

Star Strider
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
ranjeeta verma
ranjeeta verma 2015년 9월 4일
Thank You for replying. once i use this in my thesis i hope i get expected results
Star Strider
Star Strider 2015년 9월 4일
My pleasure.
I wish you well in your research.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile 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!

Translated by