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

通讯编程文档

开发平台:

Matlab

  1. function [xc,xs]=quadcomp(x,ts,f0)
  2. % [xc,xs]=quadcomp(x,ts,f0)
  3. %QUADCOMP   Returns the in-phase and quadrature components of 
  4. % the signal x. f0 is the center frequency. ts is the
  5. % sampling interval.
  6. %
  7. z=loweq(x,ts,f0);
  8. xc=real(z);
  9. xs=imag(z);