l2f.m

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

M
33
字号
function freq=l2f(wavelength)%F2L Converts wavelength to frequency  % %   freq=l2f(wavelength)% %   freq = frequency [Hz]% %   wavelength = wavelength to convert [m]% %   TECHNICAL BACKGROUND:%   Wavelength is commonly used when doing calculations in the RF domain. In%   the EW toolbox, wavelength is used in calculations such as antenna gain.%   Other times frequency is used, eg. when talking about radar operation.%   The ability to convert between the two is very useful.%   TERM: Frequency%   UNIT: Hz%   SYMBOL: f% %   REFERENCES:% % %   See also F2L% %   AUTHOUR: Jason Moyle%   DATE: September 2008% %   Copyright 2008%% Variablesl=wavelength;      % Frequency to be converted%% Calculationfreq=c/l;

⌨️ 快捷键说明

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