ip_09_06.m
来自「MATLAB通信系统仿真(程序库)」· M 代码 · 共 20 行
M
20 行
% MATLAB script for Illustrative Problem 6, Chapter 9.echo onrho_b1=0:5:35; % rho in dB for the simulated error rate rho_b2=0:0.1:35; % rho in dB for theoretical error rate computationfor i=1:length(rho_b1), smld_err_prb(i)=ss_pe96(rho_b1(i)); % simulated error rate echo off ;end;echo on ;for i=1:length(rho_b2), temp=10^(rho_b2(i)/10); if (temp>2) theo_err_rate(i)=1/(exp(1)*temp); % theoretical error rate if rho>2 else theo_err_rate(i)=(1/2)*exp(-temp/2);% theoretical error rate if rho<2 end; echo off ;end;echo on ;% Plotting command follow
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?