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

波变换

开发平台:

Matlab

  1. function d = degree(P)
  2. %DEGREE Degree for Laurent polynomial.
  3. %   d = DEGREE(P) returns the degree of the Laurent polynomial P.
  4. %   If:
  5. %      P(Z) = C(1)*Z^(n) + C(2)*z^(n-1) + ... + C(L)*z^(n-L+1)
  6. %   then: 
  7. %      d = n-(n-L+1) - n = L-1
  8. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 19-Mar-2001.
  9. %   Last Revision 13-Jun-2003.
  10. %   Copyright 1995-2004 The MathWorks, Inc.
  11. %   $Revision: 1.1.6.2 $ $Date: 2004/04/13 00:38:32 $ 
  12. d = length(P.coefs)-1;