Exponential/recursive smoothing
10 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I need to estimate power of signal over time using exponential or recursive smoothing. I got this formula
Px[n] = αPx[n-1] + (1-α)x[n]^2
and the signal is
Fs = 8000;
dt = 1/Fs;
StopTime = 5;
t = (0:dt:StopTime-dt)';
L=length(t);
noise=1*randn(L,1);
for alpha=0.999 power signal should look like this

How can I do it?
0 Kommentare
Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!