毕业论文论文范文课程设计实践报告法律论文英语论文教学论文医学论文农学论文艺术论文行政论文管理论文计算机安全
您现在的位置: 毕业论文 >> 论文 >> 正文

差错控制编码解决加性噪声 第11页

更新时间:2008-6-23:  来源:毕业论文

差错控制编码解决加性噪声 第11页

error=abs(error);

errorrate=sum(error)/100

 

 

程序三. 有噪声,无编码

infor=randsrc(1,100,[0,1]);    %产生信息infor(序列)

for n=1:100  %infor改为波形singl

    for m=1:10

        i=(n-1)*10+m;

        singl(i)=infor(n);

    end

end

subplot(3,1,1);plot(0:0.01:9.99,singl),title('输入信号')   %画出singl的波形

axis([0 1 -1 2]);

noise=randn(1,1000)*0.3   %产生噪声noise,幅度为0.3

noisesingl=singl+noise; %将噪声加入信号

subplot(3,1,2);plot(0:0.01:9.99,noisesingl),title('加入噪声的输出信号')   %画出noisesingl的波形

axis([0 1 -1 2]);

for n=1:100    %noisesingl进行采样,判决(门限为0.5

    for m=1:10

        i=(n-1)*10+m;

        result(n)=noisesingl(i);

        if result(n)>0.5

            result(n)=1;

        else result(n)=0

        end

    end

end

for n=1:100  %将判决结果result(序列)改为波形out

    for m=1:10

        i=(n-1)*10+m;

        out(i)=result(n);

    end

end

subplot(3,1,3);plot(0:0.01:9.99,out),title('输出信号'),xlabel('时间') %画出的out波形

axis([0 1 -1 2]);

error=infor-result;  %计算误码率

error=abs(error);

errorrate=sum(error)/100

程序四. 有噪声,有hamming74)编码

clear

infor=randsrc(1,100,[0,1]);    %产生信息infor(序列)

for n=1:100  %infor改为波形singl

    for m=1:10

        i=(n-1)*10+m;

        singl(i)=infor(n);

    end

end

figure(1);subplot(3,1,1);plot(0:0.01:9.99,singl),title('输入信号')   %画出singl的波形

axis([0 1 -1 2]);

noise=randn(1,1000)*0.3   %产生噪声noise,幅度为0.3

noisesingl=singl+noise; %将噪声加入信号

figure(2);subplot(3,1,1);plot(0:0.01:9.99,noisesingl),title('加入噪声的输出信号')   %画出noisesingl的波形

axis([0 1 -1 2]);

for n=1:100    %noisesingl进行采样,判决(门限为0.5

    for m=1:10

        i=(n-1)*10+m;

        result(n)=noisesingl(i);

        if result(n)>0.5

            result(n)=1;

        else result(n)=0

        end

    end

end

for n=1:100  %将判决结果result(序列)改为波形out

    for m=1:10

        i=(n-1)*10+m;

        out(i)=result(n);

    end

end

figure(1);subplot(3,1,2);plot(0:0.01:9.99,out),title('没有编码的输出信号'); %画出的out波形

axis([0 1 -1 2]);

error=infor-result;  %计算误码率

error=abs(error);

 

%加入“74汉明”编码后的情况

x=encode(infor,7,4,'hamming');x=x' %infor进行“74汉明”编码

for n=1:175  %将编码结果x(序列)改为波形codesingl

    for m=1:10

        i=(n-1)*10+m;

        codesingl(i)=x(n);

    end

end

figure(2);subplot(3,1,2);plot(0:0.01:17.49,codesingl),title('汉明码波形') %画出codesingl的波形

axis([0 1 -1 2]);

noise1=randn(1,1750)*0.3   %产生噪声noise,幅度为0.3

noisesingl1=codesingl+noise1; %将噪声加入信号

figure(2);subplot(3,1,3);plot(0:0.01:17.49,noisesingl1),title('有噪声的汉明码波形'),xlabel('时间'); %画出noisesingl1的波形

for n=1:175    %noisesingl进行采样,判决(门限为0.5

    for m=1:10

        i=(n-1)*10+m;

        result1(n)=noisesingl1(i);

        if result1(n)>0.5

            result1(n)=1;

        else result1(n)=0

        end

    end

end

y=decode(result1,7,4,'hamming');y=y'   %将判决结果result(序列)进行解码

for n=1:100  %将解码结果y(序列)改为波形out1

    for m=1:10

        i=(n-1)*10+m;

        out1(i)=y(n);

    end

end

figure(1);subplot(3,1,3);plot(0:0.01:9.99,out1),title('hamming码的输出信号'),xlabel('时间') %画出的out1波形

axis([0 1 -1 2]);

error1=infor-y;  %计算误码率

error1=abs(error1);

errorrate=sum(error)/100  %有噪声,无编码的误码率

errorrate1=sum(error1)/100  %有噪声,有hamming(7,4)编码的误码率

程序五. 有噪声,有BCH74)编码

clear

infor=randsrc(1,100,[0,1]);    %产生信息infor(序列)

for n=1:100  %infor改为波形singl

    for m=1:10

        i=(n-1)*10+m;

        singl(i)=infor(n);

    end

end

figure(1);subplot(3,1,1);plot(0:0.01:9.99,singl),title('输入信号')   %画出singl的波形

axis([0 1 -1 2]);

noise=randn(1,1000)*0.3   %产生噪声noise,幅度为0.3

noisesingl=singl+noise; %将噪声加入信号

figure(2);subplot(3,1,1);plot(0:0.01:9.99,noisesingl),title('加入噪声的输出信号')   %画出noisesingl的波形

axis([0 1 -1 2]);

for n=1:100    %noisesingl进行采样,判决(门限为0.5

    for m=1:10

    for m=1:10

        i=(n-1)*10+m;

        out(i)=result(n);

    end

 << 上一页  [11] [12] [13] [14] [15] 下一页

差错控制编码解决加性噪声 第11页下载如图片无法显示或论文不完整,请联系qq752018766
设为首页 | 联系站长 | 友情链接 | 网站地图 |

copyright©751com.cn 辣文论文网 严禁转载
如果本毕业论文网损害了您的利益或者侵犯了您的权利,请及时联系,我们一定会及时改正。