calculating rmse between observations and estimates of different size
이전 댓글 표시
I would like to calculate rmse between observations and estimates of different size. This are two timeseries, one 84084x1 and the second is 315360x1.
채택된 답변
추가 답변 (1개)
Youssef Khmou
2013년 9월 3일
편집: Youssef Khmou
2013년 9월 3일
You can padd the small vector with zero or Interpolate as mentioned by @Thomas :
% Given your vectors r1 r2
r1=randn(315360,1);
r2=randn(84084,1);
N1=length(r1);
N2=length(r2);
Ratio=floor(N1/N2);
r22=interp(r2,Ratio);
Diff=N1-length(r22);
r22=[r22;zeros(Diff,1)];
plot(r1), hold on, plot(r22,'r'),
RMSE=sqrt(mean(((r22-r1).^2)))
You can also use the functions downsample or upsample
댓글 수: 2
Sergio
2013년 9월 3일
Youssef Khmou
2013년 9월 3일
편집: Youssef Khmou
2013년 9월 3일
Sergio, transpose vectors r1=r1'; r2=r2' or try again the edited code .
카테고리
도움말 센터 및 File Exchange에서 Linear Model Identification에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!