smin.m

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

M
17
字号
function sMin=smin(bandWidth, temperature, SNR)% SMIN Minimum Sensitivity% %   smin=(bandWidth, temperature, SNR)% %   returns Smin [dBm]%       30 dBm = 0 dBW%   %   bandwidth = receiver bandwidth [Hz]%   temperature = Effective noise temperature [K]%   SNR = Detection threshold [dB]% n=noise(bandWidth,temperature)% ndb=g2db(n)sMinDbw=g2db(noise(bandWidth,temperature))+SNR;sMin=sMinDbw+30;

⌨️ 快捷键说明

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