0
votes
1answer
45 views

Bandpass filter not respecting cutoff

I'm using this filter in python: def bandpass_firwin(ntaps, lowcut, highcut, fs, window='hamming'): nyq = 0.5 * fs taps = firwin(ntaps, [lowcut, highcut], nyq=nyq, pass_zero=False, ...
0
votes
2answers
106 views

Bandpass filter in python

I'm trying to get a bandpass filter with a 128-point Hamming window with cutoff frequencies 0.7-4Hz in python. I get my samples for my signal from images. (1 sample = 1 image). The fps often changes. ...
2
votes
1answer
47 views

Slew rate measuring

I have to measure slew rates in signals like the one in the image below. I need the slew rate of the part marked by the grey arrow. At the moment I smoothen the signal with a hann window to get rid ...
2
votes
4answers
590 views

Plotting power spectrum in python

I have an array with 301 values, which were gathered from a movie clip with 301 frames. This means 1 value from 1 frame. The movie clip is running at 30 fps, so is in fact 10 sec long Now I would ...
5
votes
1answer
207 views

Python / Scipy filter discretization

I am currently trying to move from Matlab to Python and succeeded in several aspects. However, one function in Matlab's Signal Processing Toolbox that I use quite regularly is the impinvar function to ...
2
votes
1answer
133 views

Easy way to implement a Root Raised Cosine (RRC) filter using Python & Numpy

SciPy/Numpy seems to support many filters, but not the root-raised cosine filter. Is there a trick to easily create one rather than calculating the transfer function? An approximation would be fine ...
3
votes
1answer
273 views

Correct way to use scipy.signal.spectral.lombscargle

I'm refering to the following post : Using scipy.signal.spectral.lombscargle for period discovery I realize the answer given correct for certain case. Frequency for sin(x), which is 1/(2* pi) # ...
1
vote
1answer
107 views

Scipy: Integration of Hermite function with quadrature weights

I want to integrate the product of two time- and frequency-shifted Hermite functions using scipy.integrate.quad. However, since large order-polynomials are included, there are numerical errors ...
11
votes
5answers
552 views

Estimating small time shift between two time series

I have two time series, and i suspect that there is a time shift between them, and i want to estimate this time shift. This question has been asked before in: Find phase difference between two ...
1
vote
1answer
541 views

How To apply a filter to a signal in python

is there any prepared function in python to apply a filter (for example Butterworth filter) to a given signal? I looking for such a function in 'scipy.signal' but I haven't find any useful functions ...
2
votes
1answer
316 views

Using scipy.signal.spectral.lombscargle for period discovery

The new Scipy v0.11 offers a package for spectral analysis. Unfortunately the documentation is sparse and there aren't many available examples. As a baby example, I'm trying to do period discovery of ...
2
votes
1answer
244 views

How to define LTI systems with Time delay in Scipy?

The transfer function of an LTI system with time delay has a numerator term exp(-Td * s) where Td is the time delay. In Matlab, one could create such an LTI system in many ways (e.g. using the "s" ...
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 ...
1
vote
1answer
318 views

Order of frequency-shifting operations in 2D FFT for far-field diffraction simulations (with Matlab/Octave/Scipy)

In Matlab/Octave/Scipy, what is the correct way of shifting the frequency components after performing 2D Fourier transforms back and forth between two planes (with the output plane being the far-field ...
4
votes
2answers
644 views

How to remove the boundary effects arising due to zero padding in scipy/numpy fft?

I have made a python code to smoothen a given signal using the Weierstrass transform, which is basically the convolution of a normalised gaussian with a signal. The code is as follows: ...
1
vote
2answers
275 views

How to use rp, rs, and Wn parameters in scipy.signal.filter_design.ellip?

I'd like to try out the elliptic filter design function from SciPy in scipy.signal.filter_design.ellip. I'm familiar with the filter design functions in Octave, but I'm not sure how to use this: From ...
4
votes
1answer
218 views

SciPy “lfilter” returns only NaNs

All - I am trying to use SciPy's signal.lfilter function to filter a vector of samples - unfortunately, all that is returned is a vector of NaN. I have plotted the frequency response of the filter, ...
0
votes
3answers
621 views

Detrending a time-series of a multi-dimensional array without the for loops

I have a 3D array which has a time-series of air-sea carbon flux for each grid point on the earth's surface (model output). I want to remove the trend (linear) in the time series. I came across this ...
2
votes
1answer
720 views

Convolution along one axis only

I have two 2-D arrays with the same first axis dimensions. In python, I would like to convolve the two matrices along the second axis only. I would like to get C below without computing the ...
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 ...
2
votes
1answer
1k views

simulator of realistic ECG signal from rr data for matlab or python

I have a series of rr data (distances between r-r peak in PQRST electrocardiogramm signal) and I want to generate realistic ECG signal in matlab or python. I've found some materials for matlab (ecg ...
0
votes
3answers
996 views

Compare smoothed signal to the input signal

I smooth a series of data points using the algorithm described here: http://www.scipy.org/Cookbook/SignalSmooth . How could I compare the smoothed signal with the input signal afterward? I'm hoping I ...
3
votes
2answers
4k views

parameters for low pass fir filter using scipy

I am trying to write a simple low pass filter using scipy, but I need help defining the parameters. I have 3.5 million records in the time series data that needs to be filtered, and the data is ...
1
vote
1answer
645 views

plotting a parabola within part of a repeating signal using numpy

I have a repeating signal that varies a little bit with each cycle of a process that repeats roughly every second, though the duration and the contents of each cycle vary from each other a little bit ...
4
votes
1answer
1k views

Fourier space filtering

I have a real vector time series x of length T and a filter h of length t << T. h is a filter in fourier space, real and symmetric. It is approximately 1/f. I would like to filter x with h to ...
15
votes
4answers
4k views

STFT and ISTFT in Python

Is there any general-purpose form of short-time Fourier transform with corresponding inverse transform built into SciPy or NumPy or whatever? There's the pyplot specgram function in matplotlib, which ...