comm.ViterbiDecoder with Trellis for HDL code generation
조회 수: 4 (최근 30일)
이전 댓글 표시
Hello, I want to use the comm.ViterbiDecoder in my design and want to generate HDL code out of my design. Unfortunatelly I get always error massages during the fixed point Types validation. It seems that poly2trellis is not supported for fixed point conversion. I tried to define the Trellis by my own, but 'struct' is also not supported for fixed point conversion. This is my code:
persistent hVitDec;
if isempty (hVitDec)
Trellis = poly2trellis(7,[133 171 145 133]);
hVitDec = comm.ViterbiDecoder('TrellisStructure',Trellis,...)
end
out_1 = step(hVitDec, c_in1);
Does someone know a workaround, so I can use the ViterbiDecoder with Trellis for HDL code generation? I'm using Matlab 2013a on Win7.
Thanks a lot, Stefan
댓글 수: 0
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Error Detection and Correction에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!