1
vote
0answers
29 views

Ploting a spectrogram of a pure sinus with matplotlib

I'm trying to get a spectogram plot of a pure sine function. Together with that i want to show a plot of the fft of that whole signal. I'm expecting the peaks to be on the same frequency since were ...
3
votes
1answer
57 views

Fourier transform / iterative deconvolution fitting in python using numpy/scipy

I would like to fit a fluorescent lifetime curve. These curves are given by the convolution of the instrument response function (IRF, assumed Gaussian) and a (multi) exponential decay: Where G is ...
1
vote
2answers
74 views

Something wrong with my fft() in python

I have a function I am supposed to plot the amplitude spectrum of between 10MHz and 11.4MHz. This is the function: cos(6.72*(10**7*t) + 3.2*sin(5*(10**5*t))) I know what the plot is supposed to ...
8
votes
1answer
376 views

Python package for signal processing

I am looking for a Python package to perform an efficient Constant Q Transform (ie using an FFT to speed up the process). I found a toolbox named CQ-NSGT/sliCQ Toolbox, but I get the following error: ...
2
votes
1answer
90 views

How to read a pdb file and perform FFT based docking using python? [closed]

Suppose I have two PDB files (one of them is as follows) ATOM 1 N MET A 1 66.104 56.583 -35.505 ATOM 2 CA MET A 1 66.953 57.259 -36.531 ATOM 3 C MET A 1 ...
3
votes
3answers
141 views

“extended” IFFT

If I have a waveform x such as x = [math.sin(W*t + Ph) for t in range(16)] with arbitrary W and Ph, and I calculate its (Real) FFT f with f = numpy.fft.rfft(x) I can get the original x with ...
1
vote
2answers
240 views

(numpy) Wrong amplitude(?) of FFT'd array?

I'm using numpy and matplotlib to analyze data output form my simulations. There is one (apparent) inconsistency that I can't find the roots of. It's the following: I have a signal that has a given ...
0
votes
1answer
171 views

Fast Fourier Transform using NumPy: why it looks like this?

Fast Fourier Transform is fast method of Discrete Fourier Transformation calculation, as far as I understood. I've been playing with NumPy math library, as so has such plot with this code: import ...
0
votes
0answers
105 views

Numpy FFT with mpmath input

I am attempting to use numpy's fast Fourier transform fft, but with mpmath's high precision floats (mpf) as the input. For example, I wish to do the following: import numpy import mpmath L = ...
2
votes
3answers
521 views

Grayscale image to NumPy array for Fourier transform

Currently I'm using PIL and NumPy. I have a colored png image and I want to: Read it in in grayscale Convert to NumPy array Perform a FFT on array Display the image This is what I'm trying (in ...
3
votes
1answer
239 views

ifft(fft(audio)) is just noise

whether i just nest them (iff(fft(audio))) or try window-by-window (window the audio, do the fft, do the ifft, then invert the window, replacing zero with eps, then merge the samples back (trying abs ...
3
votes
3answers
165 views

Python running slower than MATLAB

I am translating a numerical method that I wrote in MATLAB to Python. For some reason the Python code, which is almost identical, runs considerably slower. Here U and V are the unknowns which are ...
8
votes
1answer
262 views

Parseval's theorem in Python

I'm trying to get some grip on pythons fft functionality, and one of the weird things that I've stumbled on is that Parseval's theorem doesn't seem to apply, as it gives a difference of about 50 now, ...
1
vote
2answers
165 views

np.fft.fft off by a factor of 1000 (fitting an powerspectrum)

I'm trying to make a powerspectrum from an experimental dataset which I am reading in, and then to fit it to an theoretical curve. Now everything is working fine and I'm not getting errors, except for ...
2
votes
1answer
265 views

FFT in Numpy (Python) when N is not a power of 2

My question is about the algorithm which is used in Numpy's FFT function. The documentation of Numpy says that it uses the Cooley-Tukey algorithm. However, as you may know, this algorithm works only ...
3
votes
1answer
123 views

Numpy FFT stability

I'm trying to make sense of the differences between these two numpy Fourier transforms: import numpy as np samples = 256 # define the domain in slightly different ways t_1 = np.linspace( 0.0, 1.0, ...
0
votes
1answer
103 views

Numpy/Scipy irfft strange behaviour

I am resampling a real signal, and since I have at my disposal its fft from rfft, I want to use irfft(signal, new_length). But I can't seem to get it working. This is a working code snippet that ...
1
vote
1answer
269 views

Image rotation and scaling the frequency domain?

I'm writing some code to recover the rotation, scaling and translation of a test image relative to a template using phase correlation, a la Reddy & Chatterji 1996. I take the FFT of my original ...
1
vote
1answer
261 views

Fast Fourier Transform (fft) with Time Associated Data Python

I have data and a time 'value' associated with it (Tx and X). How can I perform a fast Fourier transform on my data. Tx is an array I have and X is another array I have. The length of both arrays ...
2
votes
1answer
434 views

Can you compute the amplitude/power of original signal from Fourier tranform?

After taking the Discrete Fourier Transform of some samples with scipy.fftpack.fft() and plotting the magnitude of these I notice that it doesn't equal the amplitude of the original signal. Is there a ...
1
vote
2answers
161 views

Calculating Area Under Individual Peaks in Python After FFT

I've generated a graph of a FFT, with a number of individual peaks, in Python 2.7.3. I understand that to calculate the area under the whole graph, I can either sum the values or use trapz, but ...
0
votes
1answer
310 views

How does zero-padding work for 2D arrays in scipy.fftpack?

I'm trying to improve the speed of a function that calculates the normalized cross-correlation between a search image and a template image by using the anfft module, which provides Python bindings for ...
0
votes
2answers
734 views

Python Prime Number Generator Numpy [closed]

I'm not a programmer, but I'm learning, Can someone help me understand what FFT is? How do I implement it in a python code, for example say a python code to generate primes from 1 to 10000? Also ...
1
vote
3answers
690 views

NumPy/SciPy FFT for voltage/time data

This is a pretty basic question. I'm trying to use SciPy/NumPy to perform fft on voltage vs. time data from an oscilloscope. I am completely lost when it comes to passing the data to scipy for fft ...
2
votes
1answer
136 views

Creating a grid in Fourier-space

I have a code which creates a square image with dimensions 4x4 arcsec running from -2 arcsec to +2 arcsec and is created on an 80x80 grid. To this I want to add another image. This second image is ...
3
votes
1answer
433 views

Difference in FFT between IDL and Python

I'm passing some simple IDL code to Python. However the returned FFT values form the SciPy/NumPy packages is different than the IDL one and I can't find out why. Reducing it all to a simple example ...
1
vote
4answers
1k views

Python NumPy - FFT and Inverse FFT?

So I've been working with FFT, and I'm currently trying to get a sound waveform from a file with FFT, (modify it eventually), but then output that modified waveform back to a file. I've gotten the FFT ...
2
votes
1answer
395 views

Python NumPy Convert FFT To File

I was wondering if it's possible to get the frequencies present in a file with NumPy, and then alter those frequencies and create a new WAV file from them? I would like to do some filtering on a file, ...
3
votes
1answer
356 views

Memory alignment for fast FFT in Python using shared arrrays

I write an image processing app that needs to do multiple things and it has to do them as much real-time as possible. Acquisition of the data and their processing runs in separate processes (mainly ...
6
votes
2answers
2k views

Frequency Analysis in Python

I'm trying to use Python to retrieve the dominant frequencies of a live audio input. For the moment I am experimenting using the audio stream my Laptop's built in microphone, but when testing the ...
2
votes
1answer
439 views

Time Domain / Spectrum / DSP

I perform an iFFT on a complex-valued spectrum and change the corresponding time domain-signal by lets say nulling the first sample. Finally I transform it back to frequency domain via FFT. I wonder ...
3
votes
1answer
356 views

iFFT of symmetric spectrum

I perform the iFFT on a symmetric spectrum (using Python). Why is the result not an real-valued signal but contains complex values? # My symmetric spectrum spectrum = numpy.array( ...
0
votes
0answers
195 views

Numpy FFT freezes script

I have a script which takes a text file with 2 columns and many rows as input (x and y values of a time-series) and computed the fourier transform of the y values. The script in it's current form ...
5
votes
1answer
795 views

FFT in Matlab and numpy / scipy give different results

I am trying to re-implement one of the matlab toolboxes. they use fft over there. when i perform same operation on the same data i get different results to those from matlab. Just take a look: ...
4
votes
3answers
2k views

Units of frequency when using FFT in NumPy

I am using the FFT function in NumPy to do some signal processing. I have array called signal which has one data point for each hour and has a total of 576 data points. I use the following code on ...
2
votes
3answers
499 views

removing baseline signal using fourier transforms

I have timeseries data for many terms an example of which is below: term1 = [0.0, 0.0, 0.0, 0.0, 2.2384935833581433e-06, 3.938767914008819e-06, 0.0, 0.0, 1.1961851263949013e-06, 0.0, ...
2
votes
1answer
497 views

Why do I get rows of zeros in my 2D fft?

I am trying to replicate the results from a paper. "Two-dimensional Fourier Transform (2D-FT) in space and time along sections of constant latitude (east-west) and longitude (north-south) were used ...
3
votes
1answer
628 views

How to manage a 2D Fourier Transform(FFT) on a 3D numpy masked array?

I am having problems with doing 2D Fast Fourier Transforms on a 3D array. They are of a mathematical nature and of an 'understanding python/numpy' nature. EDIT: For clarification, the core questions ...
1
vote
1answer
197 views

Where in Python can I find real_fft() these days? It's not in numpy.fft

I have some ancient code (5 years old) and how I used to access real_fft() method was this: from FFT import * real_fft(data, fft_length) I guess the FFT module came with NumPy. Now, years later I ...
3
votes
2answers
3k views

Dicrete Fourier Transform: How to use fftshift correctly with fft

I want numerically compute the FFT on a numpy array Y. For testing, I'm using the Gaussian function Y = exp(-x^2). The (symbolic) Fourier Transform is Y' = constant * exp(-k^2/4). import numpy X = ...
5
votes
4answers
3k views

Improving FFT performance in Python

What is the fastest FFT implementation in Python? It seems numpy.fft and scipy.fftpack both are based on fftpack, and not FFTW. Is fftpack as fast as FFTW? What about using multithreaded FFT, or ...
12
votes
3answers
3k views

What is the difference between numpy.fft and scipy.fftpack?

Is the later just a synonym of the former, or are they two different implementations of FFT? Which one is better?
2
votes
2answers
838 views

Discrepancy Between Matlab and Numpy+Python FFT2?

So I was doing some homework on diffraction in Python with Numpy. My results simply wouldn't turn out how they should have, and I was confused. The code I used to generate the FFTs is as follows: ...
2
votes
5answers
2k views

Fourier transform of a Gaussian is not a Gaussian, but thats wrong! - Python

I am trying to utilize Numpy's fft function, however when I give the function a simple gausian function the fft of that gausian function is not a gausian, its close but its halved so that each half is ...
4
votes
2answers
3k views

Frequency detection from a sound file

What I am trying to achieve is the following: I need the frequency values of a sound file (.wav) for analysis. I know a lot of programs will give a visual graph (spectrogram) of the values but I need ...
3
votes
5answers
4k views

How to calculate a Fourier series in Numpy?

I have a periodic function of period T and would like to know how to obtain the list of the Fourier coefficients. I tried using fft module from numpy but it seems more dedicated to Fourier transforms ...
3
votes
3answers
3k views

How do I create a numpy array from string?

I have a file reader that reads n bytes from a file and returns a string of chars representing that (binary) data. I want to read up n bytes into a numpy array of numbers and run a FFT on it, but I'm ...
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 ...
5
votes
2answers
8k views

how to extract frequency associated with fft values in python

I used fft function in numpy which resulted in a complex array. How to get the exact frequency values?
2
votes
2answers
595 views

Detecting periodic repetitions in the data stream

Let's say I have an array of zeros: a = numpy.zeros(1000) I then introduce some repetitive 'events': a[range(0, 1000, 30)] = 1 Question is, how do I detect the 'signal' there? Because it's far ...

1 2