fig6_5.m

来自「有关雷达的MATLAB仿真资料!!!!!!!!!!!!!!!」· M 代码 · 共 35 行

M
35
字号
% Use this program to reproduce Fig. 6.5 of tetxt
close all
clear all
eps = 0.0001;
taup = 1.;
b = 5.;
up_down = 1.;
x = lfm_ambg(taup, b, up_down);
taux = -1.1*taup:.035:1.1*taup;
fdy = -1.5*b:.035:1.5*b;
figure(1)
mesh(taux,fdy,sqrt(x))
xlabel ('Delay - seconds')
ylabel ('Doppler - Hz')
zlabel ('Uncertainty function')
axis tight
figure(2)
contour(taux,fdy,sqrt(x))
xlabel ('Delay - seconds')
ylabel ('Doppler - Hz')
grid
axis tight
figure(3)
mesh(taux,fdy,x)
xlabel ('Delay - seconds')
ylabel ('Doppler - Hz')
zlabel ('Ambiguity function')
axis tight
figure(4)
contour(taux,fdy,x)
xlabel ('Delay - seconds')
ylabel ('Doppler - Hz')
grid
axis tight

⌨️ 快捷键说明

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