cp0602_gaussian_psd_nth.m

来自「uwb无线电链路的性能分析时的程序」· M 代码 · 共 29 行

M
29
字号
%
% FUNCTION 6.4 : "cp0602_Gaussian_PSD_nth"
%
% Generates the normalized PSD of the n-th derivative of
% the Gaussian pulse with variance sigma^2 as defined in:
% 
%          Sheng H., Orlik P., Haimovich A.M., Cimini Jr.
%          L.J., Zhang J., "On the Spectral and Power
%          Requirements for Ultra Wideband Transmission,"
%          IEEE International Conference on Communications,
%          Volume: 1, (May 2003), 738-742.
%
% The function receives in input:
%
% a vector representing the frequency axis 'frequency'
% the order of the derivative 'n'
% the square root of the variance 'sigma'
% the peak value of the PSD 'Amax'
%
% The function returns the PSD evaluated on the frequency
% range determined by 'frequency'
% 
% Programmed by Luca De Nardis

function PSD = cp0602_Gaussian_PSD_nth(frequency, n,...
   sigma, Amax)
PSD = Amax * (1 / ((n^n) * exp(-n))) * [(2 * pi *...
   frequency * sigma) .^ (2 * n)] .* exp(-(2 * pi *...
   frequency * sigma) .^ 2);

⌨️ 快捷键说明

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