mur.m

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

M
27
字号
function MUR=mur(PRI)% MUR Maximum Unambiguous Range (pulsed radar)% %   R=mur(PRI)% %   PRI = pulse repetition interval [s]%   MUR = max unambiguous range [m]% %   AIM: To determine the maximum unambiguous range of a pulsed radar.% %   TECHNICAL BACKGROUND: Firstly it is important to note that Maximum%   Unambiguous Range (MUR) differs from maximum radar range. Max radar%   range is limited by the radar power and other constraints. MUR is due%   to the pulse repetition interval or frequency. A pulsed radar needs to%   allow enough time for the pulse to reach its target and return before%   sending the next pulse. When a second pulse is sent before the first%   one is returned, the radar can incorrectly interpret this lower%   strength first pulse return as a close target return from the second %   pulse. This is known as an ambiguous return. Therefore the MUR is half%   the distance (remember - to the target and back) a pulse can travel in%   the interval between pulses.%   MUR = c*PRI/2% %   REFERENCES: "Radar Fundamentals", Ian Faulconbridge, Argos Press, 2002% c=3e8;  % Speed of light %now use speed of light functionMUR=c*PRI/2;   % MUR

⌨️ 快捷键说明

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