资源简介

脉冲压缩,回波信号波形仿真图,目标速度引起失真影响分析仿真图(MATLAB源码)

资源截图

代码片段和文件信息

% use this program to reproduce Fig. 5.14 of text
clear all
eps = 1.5e-5;
t = 0:0.001:.5;                 
y = chirp(t0.2520);
figure(1)
plot(ty);
yfft = fft(y512) ;
ycomp = fftshift(abs(ifft(yfft .* conj(yfft))));%fftshift将零频点移到频谱中间conj计算复数的共轭值乘是矩阵的运算,点乘是矩阵中元素的运算。
maxval = max (ycomp);
ycomp = eps + ycomp ./ maxval; 
figure(2)
del = .5 /512.;
tt = 0:del:.5-eps;
plot (ttycomp‘k‘)
axis tight%坐标范围设定为被绘制的数据范围
xlabel (‘相对延迟/s‘);
ylabel(‘归一化压缩脉冲‘)
grid
%change center frequency
y1 = chirp (t0.2522);
y1fft = fft(y1512);
y1comp = fftshift(abs(ifft(y1fft .* conj(yfft))));
maxval = max (y1comp);
y1comp = eps + y1comp ./ maxval; 
figure(3)
plot (tty1comp‘k‘)
axis tight
xlabel (‘相对延迟/s‘);
ylabel(‘归一化压缩脉冲‘)
grid
%change pulse width
t = 0:0.001:.45;        

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1479  2018-03-12 11:17  chap5\fig5_14.m

     文件        437  2003-06-05 12:10  chap5\fig5_3.m

     文件       1907  2003-07-01 16:30  chap5\matched_filter.m

     文件      28448  2003-06-25 15:15  chap5\matched_filter_gui.fig

     文件       9885  2003-06-05 12:40  chap5\matched_filter_gui.m

     文件       1120  1999-11-21 17:12  chap5\mismatch.m

     文件        166  1999-11-10 16:39  chap5\power_integer_2.m

     文件       1419  2003-07-01 16:29  chap5\stretch.m

     文件      30888  2003-07-01 16:29  chap5\stretch_gui.fig

     文件      10275  2003-06-05 14:20  chap5\stretch_gui.m

     目录          0  2018-03-12 11:33  chap5

----------- ---------  ---------- -----  ----

                86024                    11


评论

共有 条评论