Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
7answers
2k views

Exponential Moving Average Sampled at Varying Times

I have a continuous value for which I'd like to calculate an exponential moving average. Normally I'd just use the standard formula for this: Sn = αY + (1-α)Sn-1 where Sn is the new ...
7
votes
4answers
8k views

calculate exponential moving average in python

I have a range of dates and a measurement on each of those dates. I'd like to calculate an exponential moving average for each of the dates. Does anybody know how to do this? I'm new to python. It ...
5
votes
3answers
1k views

high-pass filtering in matlab

does anyone know how to use filters in matlab? I am not an aficionado, so I'm not concerned with roll-off characteristics etc --- I have a 1 dimensional signal vector x sampled at 100 kHZ, and I want ...
2
votes
2answers
645 views

Converting from samplerate/cutoff frequency to pi-radians/sample in a discrete time sampled IIR filter system

I am working on doing some digital filter work using Python and Numpy/Scipy. I'm using scipy.signal.iirdesign to generate my filter coefficents, but it requires the filter passband coefficents in a ...
1
vote
2answers
438 views

Does Python/Scipy have a firls( ) replacement (i.e. a weighted, least squares, FIR filter design)?

I am porting code from Matlab to Python and am having trouble finding a replacement for the firls( ) routine. It is used for, least-squares linear-phase Finite Impulse Response (FIR) filter design. ...
1
vote
1answer
856 views

Digital Filter Design Matlab sptool/fdatool

What is the best method for selecting design properties for a digital filter in Matlab with the GUI sptool? More specifically, if I have a signal, how do I go about determining which filter values ...