【发布时间】:2014-10-13 05:19:07
【问题描述】:
我正在尝试为我的项目创建一个 turbo 编码器。
到目前为止,我已经创建了 1/2 速率的卷积编码器。现在我很难应用交织器。这是我的代码。我没有在 ilvr 中获得输出。纠正我我要去的地方不正确。提前致谢
msg = [0 1 0 1 1 1 0 0 1 0 1 0 0 0 1];
t= poly2trellis(3,[6 7]);
[isok,status] = istrellis(t);
code1 = convenc(msg,t);
ilvr = randperm(msg);
code2 = convenc(ilvr,t);
【问题讨论】:
标签: matlab encoder telecommunication forwarderrorcorrection