acf_mue.m
上传用户:hbrsgg3
上传日期:2022-08-01
资源大小:5k
文件大小:1k
源码类别:

通讯/手机编程

开发平台:

Windows_Unix

  1. %--------------------------------------------------------------------
  2. % acf_mue.m ---------------------------------------------------------
  3. %
  4. % Computation of the ACF of deterministic Gaussian processes mu_i(t)
  5. %
  6. %--------------------------------------------------------------------
  7. % r_mm=acf_mue(f,c,tau)
  8. %--------------------------------------------------------------------
  9. % Explanation of the input parameters:
  10. %
  11. % f: discrete Doppler frequencies
  12. % c: Doppler coefficients
  13. % tau: time separation variable
  14. function r_mm=acf_mue(f,c,tau)
  15. r_mm=0;
  16. for n=1:length(c),
  17. r_mm=r_mm+0.5*c(n)^2*cos(2*pi*f(n)*tau);
  18. end