📄 fig4_16.m
字号:
% Use this program to reproduce Fig. 4.16 of text
% clear all
% close all
index = 0.;
for pd = 0.01:.05:1
index = index + 1;
[Lf,Pd_Sw5] = fluct_loss(pd, 1e-9,1,1);
Lf1(index) = Lf;
[Lf,Pd_Sw5] = fluct_loss(pd, 1e-9,1,4);
Lf4(index) = Lf;
end
pd = 0.01:.05:1;
figure (3)
plot(pd, Lf1, 'k',pd, Lf4,'K:')
xlabel('Probability of detection')
ylabel('Fluctuation loss - dB')
legend('Swerling I & II','Swerling III & IV')
title('Pfa=1e-9, np=1')
grid
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -