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

波变换

开发平台:

Matlab

  1. function M = modmat(H,G)
  2. %MODMAT Modulation matrix associated to two Laurent polynomials.
  3. %   M = MODMAT(H,G) returns the modulation matrix associated with
  4. %   two Laurent polynomials. This matrix is such that:
  5. %
  6. %              | H(z)  H(-z) |
  7. %       M(z) = |             |
  8. %              | G(z)  G(-z) |
  9. %
  10. %   See also PPM.
  11. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 22-Jan-2003.
  12. %   Last Revision: 13-Jun-2003.
  13. %   Copyright 1995-2004 The MathWorks, Inc.
  14. %   $Revision: 1.1.6.2 $  $Date: 2004/04/13 00:38:54 $
  15. M = laurmat({H , newvar(H,'-z'); G , newvar(G,'-z')});