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

通讯编程文档

开发平台:

Matlab

  1. function [v,phi]=env_phas(x,ts,f0)
  2. % [v,phi]=env_phas(x,ts,f0)
  3. %       v=env_phas(x,ts,f0)
  4. %ENV_PHAS    Returns the envelope and the phase of the bandpass signal x.
  5. % f0 is the center frequency. 
  6. % ts is the sampling interval.
  7. %
  8. if nargout == 2
  9.   z=loweq(x,ts,f0);
  10.   phi=angle(z);
  11. end
  12. v=abs(hilbert(x));