ppm.m
上传用户:haiyisale
上传日期:2013-01-09
资源大小:3246k
文件大小:1k
源码类别:

波变换

开发平台:

Matlab

  1. function M = ppm(H,G)
  2. %PPM Polyphase matrix associated to two Laurent polynomials.
  3. %   M = PPM(H,G) returns the polyphase matrix associated with
  4. %   two Laurent polynomials. This matrix is such that:
  5. %
  6. %              | even(H(z)) even(G(z)) |
  7. %       M(z) = |                       |
  8. %              | odd(H(z))   odd(G(z)) |
  9. %
  10. %   where even(P) and odd(P) are respectively the even part
  11. %   and the odd part of the Laurent polynomial P.
  12. %
  13. %   See also EVEN, ODD.
  14. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 30-Mar-2001.
  15. %   Last Revision: 13-Jun-2003.
  16. %   Copyright 1995-2004 The MathWorks, Inc.
  17. %   $Revision: 1.1.6.2 $  $Date: 2004/04/13 00:39:05 $
  18. M = laurmat({even(H),even(G);odd(H),odd(G)});