Filter löschen
Filter löschen

what is the difference between mean and filter function in matlab?

3 Ansichten (letzte 30 Tage)
Gowrishankar R
Gowrishankar R am 5 Apr. 2016
i am trying to apply moving average filter to incoming data from the serial port(real time). i referred to some tutorial, their they implemented mean function
taps = 3;
buf_len = 100;
gxdataFilt = zeros(buf_len,1);
[gx,gy,gz] = readAcc(accelerometer);
gxdata = [gxdata(2:end); gx];
gxdataFilt = [gxdataFilt(2:end) ; mean(gxdata(buf_len : -1 : buf_len-taps +1))];
in order to have moving average filter can i replace "mean" with "filter" function, with proper arguments?

Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by