필터 지우기
필터 지우기

About the Turbo Encoder/Decoder in Communication tool box

조회 수: 4 (최근 30일)
snowfish
snowfish 2015년 11월 26일
답변: Mochan Yang 2019년 11월 15일
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))

답변 (1개)

Mochan Yang
Mochan Yang 2019년 11월 15일
  • - codedBits ,,,,, Miuns (-) should be added?????

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by