Rx_est.m
上传用户:loeagle
上传日期:2013-03-02
资源大小:1236k
文件大小:0k
源码类别:

通讯编程文档

开发平台:

Matlab

  1. function [Rx]=Rx_est(X,M)
  2. % [Rx]=Rx_est(X,M)
  3. %       RX_EST  estimates the autocorrelation of the sequence of random
  4. %           variables given in X. Only Rx(0), Rx(1), ... , Rx(M) are computed.
  5. %           Note that Rx(m) actually means Rx(m-1). 
  6. N=length(X);
  7. Rx=zeros(1,M+1);                      
  8. for m=1:M+1,                          
  9.   for n=1:N-m+1,
  10.     Rx(m)=Rx(m)+X(n)*X(n+m-1);        
  11.   end;
  12.   Rx(m)=Rx(m)/(N-m+1);            
  13. end;