필터 지우기
필터 지우기

Does the MATLAB's ifft()/fft() do any spectral shaping ?

조회 수: 3 (최근 30일)
Sanat
Sanat 2012년 8월 30일
Greetings,
I generate an OFDM signal using :
Qam = qammod(randi([0 3],Nfft,1),M);
OFDMsym = ifft(Qam,Nfft);
OFDMsym_CP = [OFDMsym(end-Ncp+1:end); OFDMsym];
This is then transmitted using SDR (USRP2+RFX2400). When I view the spectrum it looks like the following:
It appears that there is some spectral shaping happening at the ends of the bands. The bandwidth I am using to transmit is well within the bandwidth limit offered by the hardware so it was suggested from the support mailing list that MATLAB was doing some spectral shaping. When I turn off say, 50-75 subcarriers on opposite sides of my OFDM band, I see a normal 'OFDM-like' spectrum:
How can I fix this? In these sub carriers I see my QAM constellation points drawn towards the origin. For ex. :
Thanks in advance. Best Regards, Sanat

채택된 답변

Walter Roberson
Walter Roberson 2012년 8월 30일
I would be pretty sure that fft() and ifft() do not do any spectral shaping. I do not have any information about qammod() though.

추가 답변 (1개)

Rick Rosson
Rick Rosson 2012년 8월 31일
Walter is correct. FFT does not do any shaping. It is an implementation of the DFT, plain and simple. MATLAB does provide additional functions that do provide windowing and shaping. Please search the doc for PSD, pwelch, and windowing for more info.

카테고리

Help CenterFile Exchange에서 OFDM에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by