plotting RMSE

15 views (last 30 days)
dab483
dab483 on 24 Jan 2012
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?

Answers (1)

bym
bym on 25 Jan 2012
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)

Categories

Find more on Linear and Nonlinear Regression in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!