Doped De-Accumulator using BCJR Algorithm ?
이전 댓글 표시
Hello, I wrote a matlab code for the doped accumulator
function [accumulated_bits] = accumulator(uncoded_bits,P)
accumulated_bits=uncoded_bits;
coded_bits=zeros(1,length(uncoded_bits));
coded_bits(1) = uncoded_bits(1);
for i = 2:length(uncoded_bits)
coded_bits(i) = mod(coded_bits(i-1)+uncoded_bits(i),2);
end
for i=P:P:length(uncoded_bits)
accumulated_bits(i)=coded_bits(i);
end
but I didn't find how to implement a decoder for this doped accumulator (using the BCJR algo) Could you help me?
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 GPU Computing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!