QAM With turbo coding at High SNR outputting all zeros
1 view (last 30 days)
Show older comments
Noel Teku
on 30 May 2020
Answered: Sai Sri Pathuri
on 8 Jul 2020
Hello,
I've been having trouble implementing 16 and 32-QAM with turbo coding. I've been using the qammod and qamdemod functions as well as the Comm.TurboEncoder and Comm.TurboDecoder functions from the communications toolbox to do this. At low SNR it gives me no issues. However, when the SNR gets high enough (i.e. 15 dB), I notice that the ouptut of the qamdemodulate function contains multiple values that are registered as infinite. Additionally, when this output is fed into the Comm.TurboDecoder functions, I notice that the output is all zeros which is incorrect. I'm thinking that it's related to the noise variance (i.e. 10^(-SNR/10)) I pass into the qamdemod function in order to perform soft demodulation. Can anyone help me understand why this happening as well as why this isn't happening at low SNR?
0 Comments
Accepted Answer
Sai Sri Pathuri
on 8 Jul 2020
When output type is LLR and the NoiseVariance value is very small (i.e., SNR is very high), LLR computations may yield Inf or -Inf because the LLR algorithm would involve computing exponentials of very large or very small numbers using finite precision arithmetic. In such cases, use of approximate LLR (approxllr) is recommended, as its algorithm does not involve computing exponentials.
You may refer the 'Tip' mentioned in 'Noise Variance' section in documentation of qamdemod
0 Comments
More Answers (0)
See Also
Categories
Find more on QAM in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!