?? fig2_16.m
字號:
% Use this program to reproduce Fig. 2.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 + -