フィルターのクリア

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

1 回表示 (過去 30 日間)
Jimmy cho
Jimmy cho 2020 年 10 月 14 日
コメント済み: Jimmy cho 2020 年 10 月 15 日
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 件のコメント
Jimmy cho
Jimmy cho 2020 年 10 月 15 日
@Walter Roberson may you please help me here? thanks alot for any assistance !
Im stuck and don't know what do I do.

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeModulation についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by