Borrar filtros
Borrar filtros

About the Turbo Encoder/Decoder in Communication tool box

4 visualizaciones (últimos 30 días)
snowfish
snowfish el 26 de Nov. de 2015
Respondida: Mochan Yang el 15 de Nov. de 2019
I ran the simulation using the comm.TurboEncoder/comm.TurboDecoder in Communication tool box with code rate 1/3. But it always shows some error bits after decoding, which makes me confused. Could anybody help me with this issue? Thanks in advance!
I attached my codes below:
N = 10000; bits = randint(N,1); pattern = randperm(N); maxIter = 5;
hTurboEnc = comm.TurboEncoder('TrellisStructure', poly2trellis(4, [13 15], 13),'InterleaverIndicesSource','input port');
hTurboDec = comm.TurboDecoder('TrellisStructure', poly2trellis(4, [13 15], 13),'InterleaverIndicesSource','Input port', 'NumIterations', maxIter);
codedBits = step(hTurboEnc, bits, pattern);
decBits = step(hTurboDec, codedBits, pattern);
e = sum(xor(decBits,bits))

Respuestas (1)

Mochan Yang
Mochan Yang el 15 de Nov. de 2019
  • - codedBits ,,,,, Miuns (-) should be added?????

Categorías

Más información sobre Wireless Communications en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by