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

通讯编程文档

开发平台:

Matlab

  1. % Impulse response of root-raised-cosine filter
  2. function y = wnyqro(alpha, x)
  3. warning off;
  4. a = 4*alpha*x;
  5. b = pi*(1+alpha)*x;
  6. c = pi*(1-alpha)*x;
  7. d = x.^2;
  8. e = 16*alpha*alpha*d;
  9. f = (pi*x) .* (1-e);
  10. y = (a .* cos(b) + sin(c) ) ./ f;
  11. warning on;