The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
119 views

Big FFT amplitude difference between the existing (synthesized) signal and the filtered signal

I think, what amplitude in the noised regions on the FFT-plot of the filtered signal should be lower, then now. Probably, small numeric deviations/errors presented in the scipy.fftpack.lfilter(). I ...
6
votes
2answers
4k views

How to implement band-pass Butterworth filter with Scipy.signal.butter

I'm having a hard time to achieve what seemed initially a simple task of implementing a Butterworth band-pass filter for 1-D numpy array (time-series). The parameters I have to include are the ...
11
votes
3answers
11k 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 to ...
4
votes
2answers
2k 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
3answers
684 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
1k 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 ...
15
votes
7answers
4k 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 ...
10
votes
4answers
12k 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 ...