acf_mue.m
上传用户:hbrsgg3
上传日期:2022-08-01
资源大小:5k
文件大小:1k
- %--------------------------------------------------------------------
- % 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