tti.m

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

M
30
字号
function [TTI,tti]=tti(rxScanTime,txPulseWidth,rxPRI,ttiPercent)% TTI Time to Intercept% %   TTI=tti(rxScanTime,rxPulseWidth,rxPRI,ttiPercent)% %   tti = time to intercept [s]%   TTI = time to intercept at required percent [s]%   rxScanTime = Receiver scan time [s]%   txPulseWidth = Receiver pulse width [s]%   rxPRI = Receiver pulse repetition interval [s]%   ttiPercent = percent of time intercept is required [%]% %   AIM: To find the time it takes for a pulsed receiver to intercept an in%   band CW radar.% %   TECHNICAL BACKGROUND:% %   REFERENCES: Benson Frater Ryan, Tactical EW, Argoss Press, 2007% %   AUTHOR: Jason MOYLE%   DATE: April 2008tti=rxScanTime; % Time to intercept based on half the scan time needs to                %  coincide with the emitter                % Assume tx and rx have independant timingpd=txPulseWidth/rxScanTime; % Probability of detectionTTI=rxPRI*(log10(ttiPercent/100)/log10(1-pd)); % TTI x percent of the time

⌨️ 快捷键说明

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