how to find Mean Error(ME), RMSE, Std Deviation either in matlab or in exel

4 visualizaciones (últimos 30 días)
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.

Respuesta aceptada

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

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Develop Apps Using App Designer en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by