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) ?
|
feedback
|
|
You can use the FILTER function. An example:
or even use the IMFILTER and FSPECIAL from the Image Package
One final option is using indexing (not recommended for very large vector)
Please note the difference in padding: | |||
|
feedback
|