prf.m~
来自「信号与信息处理-matlab信号处理工具箱源程序集合」· M~ 代码 · 共 20 行
M~
20 行
function PRF=prf(PRI)% PRF Pulse Repitition Frequency (pulsed radar)% % PRF = prf(PRI)% % PRI = pulse repitition frequency [Hz]% PRI = pulse repitition interval [s]% % AIM: To convert from pulse repitition interval (PRI) to pulse % repitition frequency (PRF).% % TECHNICAL BACKGROUND: A pulsed radar transmitts a pulse of width tau % every T seconds. The frequency of the transmitted pulses is then known% as the pulse repitition frequency and can be calculated by PRF=1/T. The% pulse repitition interval is PRI=T. PRF is more commonly used in the % radar domain while PRI is used in the EW domain. % % REFERENCES: "Radar Fundamentals", Ian Faulconbridge, Argos Press, 2002PRF=1/PRI
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?