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.

ofdm cyclic extension

Status
Not open for further replies.

shahidmalik

Newbie level 1
Joined
Sep 1, 2007
Messages
1
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,285
role of cyclic extension

i have given a sequence of length N and guard interval of 4 how will i make use of cyclic extension.
thanx in advance
 

cyclic extension in ofdm

Ex. 1.assume your data sequence = s(1:N)
2.Number of guard interval , Ng = 4 of all data length
3. Nt = N+Ng (total length)

simple code for add guard interval by matlab
%new sequence

st(1:Nt) = [s(N-Ng+1:N) s(1:N)] ;

%and then simple code for remove guard interval
1. assume Recieve signal = rt(1:Nt)

r(1:N) = rt(Ng+1:Nt);
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top