📄 acf_mue.m
字号:
%--------------------------------------------------------------------
% 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 variable
function 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -