How to use comm.Convo​lutionalEn​coder and comm.Viterbi decoder in matlab

4 vues (au cours des 30 derniers jours)
Jimmy cho
Jimmy cho le 14 Oct 2020
Commenté : Jimmy cho le 15 Oct 2020
Hi guys !
Im really doing something simple but Im stuck because there's something Im missing and it would be appreciated if there's anyone to help me to succeed in implementing it.
I have a simple message [1 0 1] and I encoding it by convolutionalEncoder (k=7 , r=1/2) and I want to decode it by Viterbi decoder so I the output of Viterbi decoder(soft decision) should be as the input to the convolutional Encoder.
Im using comm. feature of matlab and Im stuck and not succeeding to decode the simple message, the code in matlab is:
msg=[ 1 0 1] %I want to encode this message to encoder.
constlen = 7;
tblen=length(msg)
codegen = [171, 133]; % G1=171 , G2=133.
trellis = poly2trellis(constlen, codegen);
encodedData = comm.ConvolutionalEncoder(trellis);
DecodedData=comm.ViterbiDecoder(trellis,'InputFormat','TracebackDepth', tblen);
I got wrong Decoded Data (wrong output of decoder) and not the same input data (msg) , any help please? thanks alot and appreciated.
  1 commentaire
Jimmy cho
Jimmy cho le 15 Oct 2020
@Walter Roberson may you please help me here? thanks alot for any assistance !
Im stuck and don't know what do I do.

Connectez-vous pour commenter.

Réponses (0)

Catégories

En savoir plus sur Time-Frequency Analysis dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by