在线咨询
eetop公众号 创芯大讲堂 创芯人才网
切换到宽版

EETOP 创芯网论坛 (原名:电子顶级开发网)

手机号码,快捷登录

手机号码,快捷登录

找回密码

  登录   注册  

快捷导航
搜帖子
查看: 5171|回复: 14

一个卷积码编码程序

[复制链接]
发表于 2008-5-13 15:24:30 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?注册

x
function  output = cnv_encd(g,k0,input)
%   cnv_encd(g,k0,input)
%   determines the output sequence of a binary convolutional encoder
%   g is the generator matric of the convolutional code
%    with n0 rows and l*k0 columns, Its rows are g1,g2….gn
%    k0 is the number of bus entering the encoder at each clock cycle.
%    input The binary input seq
g = [0 0 1 0 0 1 0 0; 0 0 0 0 0 0 0 1; 1 0 0 0 0 0 0 1; 0 1 0 0 1 1 0 1];
k0 = 2;
input=[10011100110000111];
Output=cnv_encd(g,k0,input);
% check to see if extra zero padding is necessary    看填充的0是否必须
if rem(length(input), k0) > 0
   input = [input, zeros(size(1:k0-rem(length(input),k0)))];
end
n = length(input)/k0;          % 把输入比特按k0分组,n为所得的组数。
% check the size of matrix g
if rem(size(g, 2), k0) > 0
    error('Error, g is not of the right size.');
end
% determine L and n0
L = size(g, 2)/k0;
n0 = size(g, 1);
% add extra zeros,以保证编码器是从全0开始,并回到全0状态。
u = [zeros(size(1L-1)*k0)), input, zeros(size(1L-1)*k0))];
% generate uu, a matrix whose columns are the contents of conv. encoder at
% various clock cycles.
u1 = u(L*k0: -1 :1);
for i = 1:n+L-2
    u1 = [u1, u((i+L)*k0:-1:i*k0+1)];
end
uu = reshape(u1, L*k0, n+L-1);
% determine the output
output = reshape(rem(g*uu, 2), 1, n0*(L+n-1));
len_tal = n0*(L + n - 1);
% write the output to the encodetext
result = fopen(encodetext, 'w');
for i = 1:n0*(L+n -1)
    fwrite(result, output(i), 'bit1');
end
fclose(result);



这是我的一个卷积编码程序,可是无法运行,也没有错误提示,请高人指点,帮忙改下程序!小妹在此谢过了!o(∩_∩)o...

[ 本帖最后由 newbabyborn 于 2008-5-13 15:27 编辑 ]

1.rar

905 Bytes, 下载次数: 46 , 下载积分: 资产 -2 信元, 下载支出 2 信元

发表于 2008-6-21 10:46:22 | 显示全部楼层
good!good!
发表于 2008-6-22 13:21:18 | 显示全部楼层
一定要顶
头像被屏蔽
发表于 2008-9-13 13:33:21 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
发表于 2008-9-13 22:53:51 | 显示全部楼层
wo ding
发表于 2008-9-13 23:02:03 | 显示全部楼层
xue xi
头像被屏蔽
发表于 2008-9-20 23:11:24 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
头像被屏蔽
发表于 2008-9-24 20:10:56 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
发表于 2008-10-23 19:18:33 | 显示全部楼层
ding~~~~~~~~~
发表于 2008-11-17 09:44:11 | 显示全部楼层
好东西啊,谢谢了啊
您需要登录后才可以回帖 登录 | 注册

本版积分规则

关闭

站长推荐 上一条 /2 下一条


小黑屋| 手机版| 关于我们| 联系我们| 在线咨询| 隐私声明| EETOP 创芯网
( 京ICP备:10050787号 京公网安备:11010502037710 )

GMT+8, 2024-11-23 04:03 , Processed in 0.029386 second(s), 11 queries , Gzip On, Redis On.

eetop公众号 创芯大讲堂 创芯人才网
快速回复 返回顶部 返回列表