acf_mue.m
来自「无线移动信道的matlab源码 用于对无线通信信道的编程实现」· M 代码 · 共 21 行
M
21 行
%--------------------------------------------------------------------% acf_mue.m ---------------------------------------------------------%% Computation of the ACF of deterministic Gaussian processes mu_i(t) %%--------------------------------------------------------------------% r_mm=acf_mue(f,c,tau)%--------------------------------------------------------------------% Explanation of the input parameters:%% f: discrete Doppler frequencies% c: Doppler coefficients% tau: time separation variablefunction r_mm=acf_mue(f,c,tau)r_mm=0;for n=1:length(c), r_mm=r_mm+0.5*c(n)^2*cos(2*pi*f(n)*tau);end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?