Azzera filtri
Azzera filtri

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

2 visualizzazioni (ultimi 30 giorni)
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?

Risposte (0)

Categorie

Scopri di più su Argument Definitions in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by