PDA

View Full Version : Spectrum analyzer


bogdan
Aug7-03, 01:59 PM
I tried to obtain the spectrum of a discrete signal and I had some problems...
If I compute on a PC the discrete fourier transform (FFT or DFT) I obtain valid fourier transforms (the same Excel computes...)...
...but how do I analyze a wave obtained using a microphone ? I don't get the same results professional programs do...I tried using as the "intensity" of a frequency the magnitude...I tried using the real component...the complex one...but still no good...
Can you help ?

Guybrush Threepwood
Aug8-03, 08:34 AM
so you have a signal recorded by the computer with a microphone and you want to make the FFT?
is the microphone stereo?

bogdan
Aug8-03, 09:33 AM
I obtained the FFT...but the spectrum doesn't look like the one obtained with a proffesiona program...
I applied the FFT algorithm to a chunk of 1024 samples...I found somewhere on the web that I shoul take a small chunk and duplicate it several time to obtain a periodic signal...and then compute the FFT...can you explain in detail how to process tha signal obtained with the microphone ? (it doesn't really matter if the signal is stereo...)

Guybrush Threepwood
Aug8-03, 09:45 AM
if the microphone it's stereo, the left and right channels are mixed in the file format. When I was studying voice compression in college all the microphones on the lab were mono. The teacher said that for stereo the chanels must be separated first...

can you explain in detail how to process tha signal obtained with the microphone ?

well I'm not an expert but here goes... take a number of samples that's a power of 2 (that makes the FFT easier to compute). Multiply that with a window signal (this is optional, but depending on which window signal you use it enhances the spectrum). Make the FFT...

bogdan
Aug8-03, 09:56 AM
Let's say...128 samples...multiplied by 8...gives 1024...apply FFT to this...and the spectrum consists in the magnitudes of the complex values of the FFT ?

Guybrush Threepwood
Aug8-03, 10:03 AM
well, basically yes [t)]
I'll try to find the link to a good DSP book if you want more info about FFT...

bogdan
Aug8-03, 10:30 AM
Okay...thx...

Integral
Aug9-03, 01:40 PM
It is not clear to me what you mean by "does not look like". This is an easy thing to test, feed in a single frequency, you should see a single peak. Perhaps you could use Excell to generate a digital waveform of known content, then process the data with your program, It is very easy to make samll coding errors which give totally bogus results. A good habit is to test such software with a well know input.

Integral
Aug9-03, 01:42 PM
Originally posted by Guybrush Threepwood
if the microphone it's stereo, the left and right channels are mixed in the file format. When I was studying voice compression in college all the microphones on the lab were mono. The teacher said that for stereo the chanels must be separated first...



well I'm not an expert but here goes... take a number of samples that's a power of 2 (that makes the FFT easier to compute). Multiply that with a window signal (this is optional, but depending on which window signal you use it enhances the spectrum). Make the FFT...

As I recall it is powers of 2 data points that make the FFT possible, so it is not nice but necessary.

bogdan
Aug10-03, 12:19 PM
I tried that thing with Excel...and it's the same...but I didn't obtain the same spectrum sound analysis programs give...got it ?