⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 experiment4_2.m

📁 Simon Haykin的《Communication Systems》(《通信系统》)的配套MATLAB源代码。包括脉冲调制、随机过程、和差错编码等。
💻 M
字号:
% Experiment 4, CS: Haykin% Eyediagram% baseband PAM transmission, M=2% The channel has bandwidth limitations% channel is modeled as low pass butterworth filter % Nyquist bandwidth 0.5Hz, \alpha=0.5 % Requires Comm Toolbox to run.clear all% Define the M-ary number, calculation sample frequency M=4; Fs=20;% Define the number of points in the calculationPd=50;% The default symbol rate is Fd=1% Generate an integer message in range [0, M-1].msg_d = exp_randint(Pd,1,M);% Assume the STD of the added Gaussian noise is 0.1std_value=0.1;% Use square constellation PAM method for modulationmsg_a = exp_modmap(msg_d,Fs,M);% Adding  noisemsg_a=msg_a+randn(length(msg_a),1)*std_value;% Assume the channel equivalent to a raised cosine filter.rcv_a = rcosflt(msg_a,1,Fs,'Fs');% plot the eye pattern diagram of the received signaleyescat(rcv_a,0.5,Fs)axis([-0.5 2.5 -1.5 1.5])

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -