Thread Subject: Doppler <-> Bessel

Subject: Doppler <-> Bessel

From: David Doria

Date: 5 Oct, 2007 15:43:59

Message: 1 of 1

http://en.wikipedia.org/wiki/Rayleigh_fading

If you take a look at that, it says the FFT of a bessel
function is supposed to be a doppler spectrum

B=besselj(0,0:.1:100);
Bfft=abs(fft(B));
figure
subplot(2,1,1)
plot(B)
subplot(2,1,2)
plot(Bfft)

this code agrees with that nicely.

However, if I go the other way:

LengthDoppler = 1002;
fm=4;
StepSize = 2 * fm / (LengthDoppler - 1);
f = (fc - fm) : StepSize : (fc + fm);
DopplerSpectrum = 1 ./ (pi * fm * sqrt(1 - ((f-fc)/fm).^2));
DopplerSpectrum = DopplerSpectrum(2 : (end - 1));

where the last line is to throw away infinity points (one on
each end)

plot(DopplerSpectrum) looks nice as expected

however
plot(abs(ifft(DopplerSpectrum))) produces another doppler
spectrum, not a bessel function!!! Can anyone explain that /
give me a hint on how to fix it?

Thanks,

David

Tags for this Thread

Add a New Tag:

Separated by commas
Ex.: root locus, bode

What are tags?

A tag is like a keyword or category label associated with each thread. Tags make it easier for you to find threads of interest.

Anyone can tag a thread. Tags are public and visible to everyone.

rssFeed for this Thread
 

MATLAB Central Terms of Use

NOTICE: Any content you submit to MATLAB Central, including personal information, is not subject to the protections which may be afforded information collected under other sections of The MathWorks, Inc. Web site. You are entirely responsible for all content that you upload, post, e-mail, transmit or otherwise make available via MATLAB Central. The MathWorks does not control the content posted by visitors to MATLAB Central and, does not guarantee the accuracy, integrity, or quality of such content. Under no circumstances will The MathWorks be liable in any way for any content not authored by The MathWorks, or any loss or damage of any kind incurred as a result of the use of any content posted, e-mailed, transmitted or otherwise made available via MATLAB Central. Read the complete Terms prior to use.

Contact us at files@mathworks.com