资源简介

高斯加性噪声信道模型的matlab模拟 可根据输入的信道参数 模拟信道特性 经过测试可用 欢迎下载

资源截图

代码片段和文件信息

%This function is the matlab implimantation of additive noise channel
% s(t) input signal to channel (=sig_ip)
%n(t)additive random noise process added by channel (=noise_mat)
%a(t) attenutation factor  here it is taken as random(=att_fact)
%out put signal r(t) = a .* s(t) + n(t)
%Author: Ashwini Patankar
%Email Id: ashwinispatankar@gmail.com
%Blog: www.wirelesscafe.wordpress.com
%Details about channels can be found on the blog
function [sig_op] = additivenoise(sig_ip)
att_fact = rand();
for count = 1:1:length(sig_ip)
    noise_mat(1count) = rand();
end
sig_op = att_fact .* sig_ip + noise_mat;

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        618  2009-07-14 23:22  additive noise channel\additivenoise.m

     文件      12393  2009-07-14 23:20  additive noise channel\ip signal anc.png

     文件       1338  2009-07-14 08:40  additive noise channel\license.txt

     文件      13169  2009-07-14 23:19  additive noise channel\op signal anc.png

     文件        167  2009-07-14 23:17  additive noise channel\through_anc.m

     目录          0  2009-11-01 20:42  additive noise channel

----------- ---------  ---------- -----  ----

                27685                    6


评论

共有 条评论