I have a matrix with each column represents a feature over time. I need to find the moving average of these values with a given window size.

Is there any function like one in matlab

output = tsmovavg(vector, 's', lag, dim) ?

link|improve this question

feedback

1 Answer

up vote 7 down vote accepted

You can use the FILTER function. An example:

t = (0:.001:1)';                                %#'
vector = sin(2*pi*t) + 0.2*randn(size(t));      %# time series

wndw = 10;                                      %# sliding window size
output1 = filter(ones(wndw,1)/wndw, 1, vector); %# moving average

or even use the IMFILTER and FSPECIAL from the Image Package

output2 = imfilter(vector, fspecial('average', [wndw 1]));

One final option is using indexing (not recommended for very large vector)

%# get indices of each sliding window
idx = bsxfun(@plus, (1:wndw)', 0:length(vector)-wndw);
%'# compute average of each
output3 = mean(vector(idx),1);

Please note the difference in padding: output1(wndw:end) corresponds to output3

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.