Why are these two RMSE yield different results?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
LM_error= sqrt(mean(((trueLm-estLm).^2),2));
LM_error= sqrt(sum(((trueLm-estLm).^2),2)/length(data));
0 comentarios
Respuestas (1)
Image Analyst
el 8 de Abr. de 2018
Editada: Image Analyst
el 8 de Abr. de 2018
Why should they be? The first method does not even use the array called data at all so it doesn't surprise me that they are different.
And why not simply use immse()?
5 comentarios
Ver también
Categorías
Más información sobre Robotics en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!