rres.m

来自「信号与信息处理-matlab信号处理工具箱源程序集合」· M 代码 · 共 26 行

M
26
字号
function sep=rres(tau)% RRES Range Resolution - target seperation (pulsed radar)% %   sep=rres(tau)% %   sep = max dectectable separation of targets [m]%   tau = width of pulse [s]% %   AIM: To determine the range resolution of a pulsed radar based on the%   width of the pulse.% %   TECHNICAL BACKGROUND: A critical factor of pulsed radar performance is%   the width of the pulse. Blind range is the term given to ranges where%   targets are not able to be detected by the radar. The reason they%   cannot be detected is because they are either too close or too far away%   from the radar therefore returning RF energy during the window where%   the radar is still transmitting. Range resolution is closely related to%   blind range and is described as the ability of a radar to distinguish%   or resolve two targets that are close together in range. Targets%   separated by the range resolution or greater can be resolved.%   Range Resolution = speed of light * pulse width / 2% %   REFERENCES: "Radar Fundamentals", Ian Faulconbridge, Argos Press, 2002c=3e8;  % Speed of lightsep = c*tau/2;  % range resolution

⌨️ 快捷键说明

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