A problem about implementing soft-decision decode in an OFDM system
Afficher commentaires plus anciens
Hello,everyone. Recently I am working on a project of simulating a whole OFDM system.
I have made some progress. Now I want to change me (2,1,7) convolutional code - hard decode to soft-decision decode in order to get a better performance. I have learned from the matlab example how to implement soft-decision decode in an AWGN channel. But now I also want to apply it to a fast and multi-path fading channel. As a result of that, I am not sure about the value of noise power when calculate LLR.
I first pass my signal to a fading channel by using comm.RayleighChannel() , then I add noise by using awgn() block. This will give a noise power value.
[y_re,noise_var]=awgn(x_tr,SNR_dB(i),'measured');
Then I do LS channel estimation and equalization at the receiver. This will change the value of the signal, so as the value of the noise. So I also calculate the noise power at this time.
noise_var_1= 10^(-SNR_dB(i)/10)* mean(Y_equalized.*conj(Y_equalized));
The two power values will be totally different since one is computed with the channel effect and one is not (with channel equalization). So wich value should I use to calculate LLR?
Thanks for your reading and hope you have some ideas about this question.
1 commentaire
Saurav
le 20 Août 2024
Hi @lc
For LLR calculation, you should use the noise variance that corresponds to the signal after equalization (noise_var_1). This is because the LLR calculation needs to reflect the actual noise conditions affecting the equalized signal.
The equalization process can alter the noise characteristics, so it's essential to use the noise variance that matches the equalized signal environment.
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur PHY Components dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!