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

传真(Fax)编程

开发平台:

Matlab

  1. function [delta_R] = range_resolution(bandwidth,indicator)
  2. % This function computes radar range resolution in meters
  3. % the bandwidth must be in Hz ==> indicator = Hz.
  4. % Bandwidth may be equal to (1/pulse width)==> indicator = seconds
  5. c = 3.e+8; % speed of light
  6. if(indicator == 'hz')
  7.    delta_R = c / 2.0 / bandwidth; 
  8. else
  9.    delta_R = c * bandwidth / 2.0;
  10. end
  11. return