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

波变换

开发平台:

Matlab

  1. function C = lp2num(P)
  2. %LP2NUM Coefficients of a Laurent polynomial object.
  3. %   C = LP2NUM(P) returns a vector C whose elements are 
  4. %   the coefficients of the Laurent polynomial object P.
  5. %
  6. %   If L is the length of the vector C, P represents 
  7. %   the following Laurent polynomial:
  8. %      P(z) = C(1)*z^d + C(2)*z^(d-1) + ... + C(L)*z^(d-L+1)
  9. %      where d = powers(P,'max')
  10. %
  11. %   See also GET.
  12. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 19-Apr-2001.
  13. %   Last Revision 08-Jul-2003.
  14. %   Copyright 1995-2004 The MathWorks, Inc.
  15. %   $Revision: 1.1.6.2 $ $Date: 2004/04/13 00:38:49 $ 
  16. C = P.coefs;