How to find RMSE of ground robot simulation ..?

6 vues (au cours des 30 derniers jours)
Paarth
Paarth le 6 Sep 2022
So I've designed the ground robot for a assignment and want to find to find the rmse of the simulation. I need 'how to' directions in the simplest way. Please someone help me ..

Réponses (1)

Sam Chak
Sam Chak le 7 Sep 2022
Perhaps you are talking about the mobile robot's travelled path and the planned path.
This probably works provided that you have the Image Processing Toolbox.
x = linspace(-5, 5, 1001);
y1 = (tanh(x) + 1)/2;
y2 = (erf(sqrt(pi/4)*x) + 1)/2;
plot(x, [y1; y2]'), grid on, xlabel('x'), ylabel('y')
legend('tanh', 'erf')
xticks([-5 -2.5 0 2.5 5])
rmse = sqrt(immse(y1, y2))
rmse = 0.0083

Catégories

En savoir plus sur Robotics dans Help Center et File Exchange

Produits


Version

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by