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.

Puncturing in turbo coder

Status
Not open for further replies.

awatefawatef

Newbie level 2
Joined
May 14, 2013
Messages
2
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,296
svp
j'ai une problème :comment faire le puncturing dans turbo coder avec matlab.j'ai le code de turbo code seulemnt sans spuncturing mais j'arrive pas a le développer avec puncture :
len=4;
msg = randi([0 1], len, 1);% Random data
s = RandStream('mt19937ar', 'Seed', 11);
intrlvrIndices = randperm(s, len);

t = poly2trellis(4,[13 15 17], 13);
hTEnc = comm.TurboEncoder('TrellisStructure',t,'InterleaverIndices', intrlvrIndices, PuncturePattern);
code = step(hTEnc,msg);
hTDec = comm.TurboDecoder('TrellisStructure',t,'InterleaverIndices', intrlvrIndices,...
'NumIterations', 4);


decode = step( hTDec, code);
msge=msg'
codee=code'
decodee=decode'
jai besion urgent quelqu'un peut m'aider et merci d'avance
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top