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

通讯/手机编程

开发平台:

Windows_Unix

  1. %--------------------------------------------------------------------
  2. % grad_Jakes.m ------------------------------------------------------
  3. %
  4. % Computation of the analytical gradient of the error function for
  5. % the optimization of the discrete Doppler frequencies (Jakes PSD).
  6. %
  7. % Used m-file: acf_mue.m
  8. %--------------------------------------------------------------------
  9. % G=grad_Jakes(x)
  10. %--------------------------------------------------------------------
  11. % Explanation of the input parameters:
  12. %
  13. % x: parameter vector to be optimized
  14. function G=grad_Jakes(x)
  15. f_i_n=x;
  16. r=acf_mue(f_i_n,c_i_n,tau);
  17. D=Jo-r;
  18. F=norm(D,p);
  19. G=[];
  20. for k=1:N_i,
  21. g=F^(1-p)*D.^(p-1)*(2*pi*c_i_n(k)^2*tau.*...
  22. sin(2*pi*f_i_n(k)*tau)).';
  23. G=[G;g];
  24. end