Artifact 7087da7058b76b3356c29de238bae99b5fe7e4c598c5a1229bb0a7f62702cd4f:
- Executable file
r37/lisp/csl/html/r37_0545.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: 906) [annotate] [blame] [check-ins using] [more...]
<A NAME=taylortemplate> <TITLE>taylortemplate</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>TAYLORTEMPLATE</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P> <P> The template of a Taylor kernel, i.e. the list of all variables with respect to which expansion took place together with expansion point and order can be extracted using <P> <P> <P> <H3> syntax: </H3> <em>taylortemplate</em>(<expression>) or <em>taylortemplate</em> <simple_expression> <P> <P> <P> This returns a list of lists with the three elements (VAR,VAR0,ORDER). An error is signalled if the argument is not a Taylor kernel. <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 taylortemplate hugo; {{X,0,2}} </TT></PRE><P>