Artifact 05381dc1d1c2a70fe513715915decbb93cc25376bce4ea36c27db25f249870b6:
- Executable file
r37/lisp/csl/html/r37_0544.html
— part of check-in
[f2fda60abd]
at
2011-09-02 18:13:33
on branch master
— Some historical releases purely for archival purposes
git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/trunk/historical@1375 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 939) [annotate] [blame] [check-ins using] [more...]
<A NAME=taylorseriesp> <TITLE>taylorseriesp</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>TAYLORSERIESP</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P> <P> This operator may be used to determine if its argument is a Taylor kernel. <P> <P> <P> <H3> syntax: </H3> <em>taylorseriesp</em>(<expression>) or <em>taylorseriesp</em> <simple_expression> <P> <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> hugo := taylor(exp(x),x,0,2); 1 2 3 HUGO := 1 + X + -*X + O(X ) 2 if taylorseriesp hugo then OK; OK if taylorseriesp(hugo + y) then OK else NO; NO </TT></PRE><P>Note that this operator is subject to the same restrictions as, e.g., <em>ordp</em> or <em>numberp</em>, i.e. it may only be used in boolean expressions in <em>if</em> or <em>let</em> statements. <P> <P> <P>