Sign in

username:

password:



Not a member?

Search compdsp



Search tips

comp.dsp by Keywords

Adaptive Filter | ADPCM | ADSP | ADSP-2181 | Aliasing | AMR | Anti-Aliasing | ARMA | Autocorrelation | AutoCovariance | Beamforming | Bessel | Blackfin | Butterworth | C6713 | CCS | Chebyshev | CIC Filter | Circular Convolution | Code Composer Studio | Comb Filter | Compression | Convolution | Cross Correlation | DCT | Decimation | Deconvolution | Demodulation | DM642 | DSP Boards | DSP/BIOS | DTMF | Echo Cancellation | Equalization | Equalizer | ETSI | EZLITE (Ez-kit Lite) | FFT | FFTW | FIR Filter | Fixed Point | FSK | G.711 | G.723 | G.729 | Gaussian Noise | Goertzel | GPIO | Hilbert Transform | IFFT | IIR Filter | Interpolation | Invariance | JTAG | Kalman | Laplace Transform | Levinson | LPC | McBSP | MIPS | Modulation | MPEG | Multirate | Notch Filter | Nyquist | OFDM | Oversampling | Pink Noise | Pitch | PLL | Polyphase | QAM | QDMA | Quantization | Quantizer | Radar | Random Noise | Reed Solomon | Remez | Resampling | RTDX | Sampling | Sharc | TI C6711 | Undersampling | Viterbi | Wavelets | White Noise | Wiener Filter | Windowing | XDS510PP | Z Transform

Ads

Discussion Groups

See Also

Embedded SystemsFPGAElectronics

Comp.dsp is a worldwide Usenet news group that is used to discuss various aspects of digital signal processing.

We found 2589 threads matching "fft"

You are looking at page 1 of 65.

The most relevant threads are listed first

FFT coding help

relative - 2008-09-24 09:09:00
Hi, I've just coded an easy fft program. You can find it here: http://rapidshare.com/files/147982232/fft.tar.gz.html Compile it with gcc -lm -I. fft.c ep.c and then run a.out. As you'll see, it takes about 0.5 seconds to do a length-8192 FFT. I think that's a very bad time. Compared to other...FFT coding help

FFT with TMS320F2812

2007-02-09 07:06:00
I use the TI FFT Library and I have two question : First, in the TI example RFFT32_brev(ipcb,ipcb,N); RFFT32_brev(ipcb,ipcb,N);// Input samples in Real Part fft.win(&fft); RFFT32_brev(ipcb,ipcb,N); RFFT32_brev(ipcb,ipcb,N);// Input after windowing fft.calc(&fft); fft.split(&fft); fft.mag(...FFT with TMS320F2812

Re: Converting FFT to inverse-FFT

Greg Berchin - 2009-12-16 17:05:00
On Wed, 16 Dec 2009 13:52:04 -0800 (PST), dbd wrote: > Did you swap real and imaginary both before the FFT and after the FFT > as the cited reference on IFFT states? Thank you, Dale. Now it makes sense. I had relied entirely upon the original assertion: > For an inverse FFT, just r...Re: Converting FFT to inverse-FFT

FFT question

VijaKhara - 2007-05-11 10:25:00
Hi all, I always hear that the computational complexity of FFT is O(NlogN). However I learn that there are many FFT algorithms such as: Cooley-Tukey FFT algorithm ,Split-radix FFT algorithm ,Prime-factor FFT algorithm ,Bruun's FFT algorithm ,,Rader's FFT algorithm ,Bluestein's FFT algorithm ...FFT question

Wimax FFT size support question

2007-12-17 15:51:00
I have been looking into the 802.16 Wimax system ( OFDMA ) to get a basic understanding. The system seems to be able to support multiple FFT sizes, such as 128, 256, 512, 1024 etc. I am not able to understand couple of issues: 1. Is the FFT size fixed for a basestation(BS)? If not when can i...Wimax FFT size support question

time domain zero padding VS fft interpolation between bins

SYL - 2008-10-01 14:17:00
Hi, Suppose I have N samples and I want to do one N point FFT and a 4N point FFT with zeros padding. Can do get the 4N-FFT by interpolating the N-FFT? Is there a formula? Is the interpolation fast than just do a zero-padded 4N-FFT? Thanks ...time domain zero padding VS fft interpolation between bins

FFT code for dsPIC

charlyb - 2008-05-10 07:46:00
Hi Has anyone written their own fft function for the dsPIC ? (NOT the supplied library fft). I need a fft for measuring signal in noise and not being a DSP person would prefer to implement it rather than write it from scratch. The dsPIC library scales the data by 1/N which limits the dynamic ...FFT code for dsPIC

2D FFT window function

gobruins - 2009-03-06 08:04:00
I have some questions about length of windowing functions applied to 1D and 2D FFT. For a N point 1D FFT, it is very straightforward, I can generate a N point window function, and multiply it with the signal before doing FFT. But for N*N point 2D FFT, what length of window function should I use? Sho...2D FFT window function

Real vs. complex FFT

Chris Fogelklou - 2004-04-05 03:08:00
Hi DSP People, Just a quick question... is there really much difference between the processing of a normal, complex FFT and a real-only FFT? I thought there wouldn't be... The FFT/DFT math still requires that complex and imaginary parts of the FFT would be needed during the FFT processing, ...Real vs. complex FFT

is FFT always approximate?

Michael - 2006-07-31 13:57:00
If I have a time signal which is periodic, and I use FFT to obtain the spectrum, which should be discrete, will this FFT procedure be approximate? I am wondering about this because I've heard that FFT is only an approximation to the true Fourier transform... ...is FFT always approximate?

FFT of 0s and 1s signal

Luc Moulinier - 2008-04-22 12:20:00
Hello !! I have to FFT a signal made of 0s and 1s, i.e., my sequence is for example, 0,1,1,0,0,0,0,1,0,1,1,0 ... etc This is a true serie of 0s and 1s, not a number, written as binary. I am wondering if someone knows about a FFT algorithm able to handle such a cose. I'm not (far not!) an ex...FFT of 0s and 1s signal

assemble 2K FFT by 2 times 1K FFT?

RobR - 2008-07-29 09:40:00
Hi folks, I heard about the possibility to obtain higher order FFTs by utilizing lower order FFTs. In fact, this IS the basic idea of FFT as far as i know. But since I am not that deep into the theory of FFT, I have a question to the experts. I want to perform a 2K FFT within FPGA. Now i ...assemble 2K FFT by  2 times 1K FFT?

Is there a sample Java code for fixedpoint FFT?

Robert Hay - 2006-01-25 11:42:00
Hi, I have now a Java code implementing real FFT. I need actually Java code for implementing integer (fixed-point) FFT. I mean with this that the FFT accepts Java int type as input and produces Java int type as output. If there is no Java fixed-point FFT, how can I convert the existing Java real ...Is there a sample Java code for fixedpoint FFT?

FFT processor - some issues

aamir.nedian - 2006-07-07 17:15:00
i am working on a FFT processor. i need to know that if i need to take the 1024 point FFT of a voltage time series then what should i do. i mean which one is correct way. 1) wait for 1024 samples and take their FFT. then wait for another 1024 samples and take their FFT and so on.... 2) wait fo...FFT processor - some issues

use of radix-2 ffts

Bob - 2003-10-08 08:20:00
Hello again, Can a radix-4 fft be used to construct any type of radix-2 fft. e.g. can I manipulate a 64 pt radix-4 fft to give me a 128 pt radix-2 fft ? If so, is the radix-2 fft of any use in dsp as it usually results in larger and slower ffts than the radix-4 version. As always thanks f...use of radix-2 ffts

Large FFT on ADSP-21065L

Bremi - 2006-08-28 10:51:00
Hi. I want to use a very large FFT (65536 samples) on a Sharc 21065L. But I encountered a problem with the ADI FFT (rfft65536) with my DSP: the twiddle-factors need to be in the PM, but that is far too much data for the internal memory of the 21065. I tried the FFT from "Numerical Recipies in C",...Large FFT on ADSP-21065L

Analyzing ADC performance using FFT

werebt - 2008-01-02 11:14:00
I am new to FFT and very eager to learn FFT and explore various application use of FFT in real world application. I have a ADC and I have accumulated 4096 samples. Now I want to perform FFT and find out details on noise. Can you please Direct to web link which show steps on how to perform ...Analyzing ADC performance using FFT

FFT Radix

vt2001cpe@gmail.com - 2008-02-01 23:48:00
I am trying to implement a 128 point FFT. I have 16 8-bit samples aligned and ready for input into the FFT. I would like to know if the terms "mixed radix fft" and "split radix fft" are considered interchangeable. If not, what is different? Is it possible to use 64 radix 2 butterflys in front ...FFT Radix

Slight Modification of the FFT algorithm

Curl - 2004-12-14 10:05:00
Hello All, Suppose I have a non linear system with four inputs x1,x2,x3,x4 and one output y² x1(n) --> --> y1²(n)-------\ x2(n) --> (H) --> y2²(n)------ +-----> y²(n) = y1²(n)+y2²(n)+y3²(n)+y²4(n) x3(n) --> --> y3²(n)------/ x4(n) --> --> y4²(n)----...Slight Modification of the FFT algorithm

combining small FFTs to make a larger FFT

digintu - 2008-06-01 20:06:00
Hello, When combining two smaller FFTs to make a larger one, what are the techniques. Example..I want to combine two 64 pt FFTs into a 128 pt FFT. I have fed the first 64 data samples into the first FFT and the second 64 into the 2nd FFT. The results are output from the two FFTs into a 128 array....combining small FFTs to make a larger FFT

Relation between No of points of FFT and sampling frequency?

amrish - 2007-02-01 08:00:00
Hi Friends, I am new to this. My questions is very basic. How do i decide that i need to use 1024 point FFT or 2048 point FFT or N point FFT for a system. I am working on a project, where my sampling frequency is 80mhz and i need to decide how many point FFT to be use? What are the paramete...Relation between No of points of FFT and sampling frequency?

FFT on dsPIC33F

charlyb - 2008-05-03 12:13:00
Hi, Can anyone help with this ? :- I am using the fft function on the dsPIC from the Microchip library. When I do a fft I get a non linear result. The dsPIC function claims the result will be 1/N where N=fft size. When I do a 512 fft with a 20Hz sine signal sampled at 640Hz - I can extra...FFT on dsPIC33F

FFT question!

phunkyman - 2004-03-29 05:21:00
Hi, When realising a FFT, can we get the frequency corresponding to each point calculated? Apparently, the results given by a FFT is only the [Re,Im] of each point? If we can't know the frequency by a FFT, how can we do it? The thing i'd like to do is detecting 2 different frequencies from ...FFT question!

Using *real* FFT separably for multiple dimensions

dee.ess.pee - 2007-12-13 08:13:00
Hello Comp.DSP, I need to perform forward and inverse FFT of multi-dimensional, real data. I am already successful to do this using the complex FFT separably. Now I would like to do this using the real FFT for computational savings. However, after I perform real FFT of the first dimension, ...Using *real* FFT separably for multiple dimensions

Help me a build the FFT of a signal please

Eugene - 2004-12-08 04:52:00
Hello, I just started to work with DSP 320VC5416 and I try to build the FFT of the sine signal. If I have right, then I should get only one peak in FFT spectrum. but if I use fft function, and then show my result in "code composer studio" in praph/time:frequency, then I see a lot of peak...Help me a build the FFT of a signal please

How to cross-correlate in polar coordinate using FFT?

2007-02-22 20:44:00
Hi, We all know the FFT-based cross-correlation in cartesian coordinate is given by: C = IFFT[ FFT[ f(x,y) ] * Conj[ FFT[ h(x,y) ] ] Here is the question: how is it possible to do this in polar? I do not think if this is the answer: C = IFFT[ FFT[ f(r,p) ] * Conj[ FFT[ h(r,p) ] ] wh...How to cross-correlate in polar coordinate using FFT?

Re: dsPIC 1024 or 2048 FFT

Thomas Magma - 2008-01-23 20:38:00
> Why getting stick to Microchip functions? There is a million of different > FFT realizations in C around. Just pick the one you like. > After reading the documentation, it appears to me that Microchip has tailored their FFT function for the dsPIC hardware. The way that they allocate m...Re: dsPIC 1024 or 2048 FFT

Unusual Transform Exist?

2006-07-25 08:00:00
Suppose you have 8 discrete samples. If you apply a typical Cooley/Turkey FFT of size-8, you will get 4 real/even and 4 imag/odd values. Suppose you then take successive FFTs of size-4 for the different consecutive size-4 chunks from the original 8 time samples - you would have 5 size-4 FFT re...Unusual Transform Exist?

FFT Algorithm and Time

d1camero - 2006-11-11 09:42:00
I am new to DSP and FFT. I have implememented the FFT in Smith's book. What I am a little confused about is how do I determine what is the frequency scale of the X axis? thanks Don ...FFT Algorithm and Time

COnvolution and FFT

Pravesh - 2005-08-02 13:46:00
Hello, I have a gaussian kernel of size [192,192] to be convoluted with an image of size [512,512] for smoothing. Using the FFT property that fft of a convolution is the product of the fft of the individual terms (fft(f(t) * g(t))) = f(w)g(w), i could say that smoothedimage = fftinverse(fft(...COnvolution and FFT

dc component in fft query

Bob - 2003-07-18 08:05:00
Hi all, Just wondering about the dc component of an fft. If I have an input signal e.g a single cosine wave. When I sample it for say a 128 point fft, should it have a dc component value. In my fft, I sum the input samples and calculate the average. I half expected it to be zero (no dc c...dc component in fft query

FFT SIZE DETECTION

PARTICLEREDDY - 2006-07-16 23:43:00
Dear members, I am encountering a peculiar problem, wherein i have to dynamically detect size of the FFT of the signal taken. for example a signal is taken and fft of it is taken, it may be 128 or 256 or any size. utimately i dont have any iota of knowledge of the signal...FFT SIZE DETECTION

Zero padded FFt

Madhukar - 2004-03-03 04:22:00
Hi, In order to increase resolution of my FFT (reduce midbin loss), I want to use a 2N point FFT, N is a power of 2, last N points are zeroes. What is the efficient way to compute this? TIA BRMADHUKAR ...Zero padded FFt

FFT Structure optimization

abramovs - 2006-09-30 06:59:00
Hi! I want to ask for your advice about a problem i have. I need to perform an FFT every specified amount of time but the FFT calculation takes more time than i can afford. as an optimization step i want to throw half of the output bins of the FFT but on the FFT structures that i know it'll only sa...FFT Structure optimization

sub-Hz FFT

Peter123 - 2008-10-09 13:51:00
I am sampling voltage values. I need to convert it to the frequency domain using FFT . As I understand the frequency steps after FFT will be the integer multiples of Fs/N (where Fs is the data sample rate in Hz, and N is the FFT length). How can I have sub-Hz frequency steps? Do I use use long sa...sub-Hz FFT

FFT Size calculation.

2007-03-29 11:54:00
Hi, I have the following problem that I am trying to address. Lets say we take 64 numbers and apply FFT of size 64. Then we concatenate 100 of these 64 numbers, and perform D/A conversion. This signal is digitized at a rate other than the original sampling rate, say we have oversampling of 3/...FFT Size calculation.

normalised cross correlation by fft

sangthong - 2008-02-26 14:58:00
Hi, I have got a problem doing 2D normalised cross correlation by FFT. The normal 2D cross correlation seems very time consuming for long signal so I tried to use FFT. I can now get the equal result of cross correlation both by equation and by FFT, but I can not do the normalisation to get the re...normalised cross correlation by fft

testing FFTs

Bob - 2003-07-04 19:23:00
Hi Folks, A few weeks ago, I posted a query on FFT scaling. After your kind replys, I got it working. I was able to get the real only FFT to work. By this I mean, there was no imaginary data input. However how does one test a complex FFT to make sure it is working? Is there a datafile th...testing FFTs

Re: Any FFT trick to do this?

m26k9 - 2009-02-19 01:13:00
Thank you very much for all the replies. Actually when I thought more the sliding DFT or Geortzel algorithm do not work for me since I need to find a lot more than one bin of the FFt at a time. I do have a question on the scalable FFT. I will post a different thread on that since its not relat...Re: Any FFT trick to do this?

FFT code?

Oof - 2005-07-18 15:17:00
Hi there, i googled myself silly on info on a 2D FFT an Inverse-FFT algorithm. all i find is the math equations. No practical info on how to implement it. Does anybody have some info on implementing an FFT algorithm preferably in VC++.NET ( managed C++) or some clear pseudo code on what st...FFT code?
| 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | next