Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

subcarriers overlapping in OFDM...

Status
Not open for further replies.

mashhur

Member level 5
Joined
Jan 21, 2009
Messages
91
Helped
6
Reputation
12
Reaction score
4
Trophy points
1,288
Activity points
1,863
subcarriers

Hi all!

could somebody explains me even though the subcarriers overlap each other in frequency domain, the information doesn't mix at receiver?
 

ofdm subcarriers plot

Actually if you look at the frequency domain plot, the peak of one carrier is on the point where the the two carriers; one on its right and one on its left have their zero crossing. And you know at zero crossing they would contribute to zero energy to the center carrier, And this is how, even after 'overlapping' they dont mix.

In fact if you look at this statement carefully, you'd also understand why we say that OFDM signals are extremely sensitive to Doppler shifts, as it violates the idea of non-overlapping carriers

I hope that helped you

---------------------------------------------------------
groups.yahoo.com/group/telecom_research
 

    mashhur

    Points: 2
    Helpful Answer Positive Rating
matlab ofdm overlap

Hi freind

see the attached file i think it is good to understand it

enjoy
 

    mashhur

    Points: 2
    Helpful Answer Positive Rating
how the overlapping takes place in ofdm

thank you a lot, i had read them but didn't pay attention!
 

ofdm+subcarrier+matlab code

From which book is that taken from Muntather. Its looks good. By the way do you have the codes used for those graphs. I'm not asking for pdfs and just the Matlab code, if you have
 

subcarrier spectrum

i read it from this thesis but unfortunately there is not code. however, many times i saw this graph.

please check mathworks.com
 

subcarrier ofdm

the code to generate this figure is attached here

N = 16; % Number of subcarriers.
a = sign(randn(N, 1) ) ; % Generate BPSK symbols.
b = diag(a) ; % This helps to plot overlapping subcarrier spectrum.
c = ifft(b) ; % Do IFFT along each column--(each column is a subcarrier).
f = fft(c, N*16) ; % Do FFT of 16x resolution.
plot(abs(f) ) ; % U get the spectrum corresponding to each subcarrier.
grid on; hold on;
plot(abs(sum(f, 2) ) , '-*' ) ;
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top