fig7_3.m
上传用户:szahd2008
上传日期:2020-09-25
资源大小:1275k
文件大小:0k
源码类别:

传真(Fax)编程

开发平台:

Matlab

  1. % use this program to reproduce Fig. 7.3 of text
  2. clear all
  3. close all
  4. nscat = 2; %two point scatterers
  5. taup = 10e-6; % 100 microsecond uncompressed pulse
  6. b = 50.0e6; % 50 MHz bandwdith
  7. rrec = 50 ; % 50 meter processing window
  8. scat_range = [15 25] ; % scattterers are 15 and 25 meters into window
  9. scat_rcs = [1 2]; % RCS 1 m^2 and 2m^2
  10. winid = 0; %no window used
  11. [y] = matched_filter(nscat,taup,b,rrec,scat_range,scat_rcs,winid);