資源簡介
脈沖壓縮,回波信號波形仿真圖,目標速度引起失真影響分析仿真圖(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
- 上一篇:無線通信多徑效應matlab仿真
- 下一篇:k-medoids聚類matlab實現
評論
共有 條評論