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

波变换

开发平台:

Matlab

  1. function F = inline(P)
  2. %INLINE Construct an INLINE object associated to a Laurent Polynomial.
  3. %   F = INLINE(P) returns an inline object associated to the
  4. %   Laurent Polynomial P.
  5. %   
  6. %   Example:
  7. %      PL = laurpoly([-1 1],1)
  8. %      PI = inline(PL)
  9. %      p0 = PI(0)
  10. %      p1 = PI(1)
  11.    
  12. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 16-Jun-2003.
  13. %   Last Revision: 03-Jul-2003.
  14. %   Copyright 1995-2004 The MathWorks, Inc.
  15. %   $Revision: 1.1.6.2 $  $Date: 2004/04/13 00:38:44 $
  16. F = inline(lpstr(P,Inf));