inline.m
上传用户:haiyisale
上传日期:2013-01-09
资源大小:3246k
文件大小:1k
- function F = inline(P)
- %INLINE Construct an INLINE object associated to a Laurent Polynomial.
- % F = INLINE(P) returns an inline object associated to the
- % Laurent Polynomial P.
- %
- % Example:
- % PL = laurpoly([-1 1],1)
- % PI = inline(PL)
- % p0 = PI(0)
- % p1 = PI(1)
-
- % M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 16-Jun-2003.
- % Last Revision: 03-Jul-2003.
- % Copyright 1995-2004 The MathWorks, Inc.
- % $Revision: 1.1.6.2 $ $Date: 2004/04/13 00:38:44 $
- F = inline(lpstr(P,Inf));