plotting RMSE

16 次查看(过去 30 天)
dab483
dab483 2012-1-24
Hi,
i am calculating root mean square error (RMSE) of true state(x) and estimated state (xhat)using the equation below:
err=sqrt(sum(x(:,1)-xhat(:,1))^2/numel(x))
this will gave me one answer at the last of simulation time. Now, if i want to plot the RMSE over simulation time, how should i coding it?

回答(1 个)

bym
bym 2012-1-25
Assuming you are calculating x and xhat in a loop with an index variable(e.g. k), then
err(k)=sqrt(sum(x(1:k,1)-xhat(1:k,1))^2/k);
t(k) = dt*k; %simulation time, where dt is time for one increment of loop
%outside of loop:
plot(err,t)

类别

Help CenterFile Exchange 中查找有关 Linear and Nonlinear Regression 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by