Artifact a174809a9501434c5089d9b0d113d1f80d88c1002c4f82022f04a017ff2edf7b:
- Executable file
r37/lisp/csl/html/r37_0540.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: 1184) [annotate] [blame] [check-ins using] [more...]
<A NAME=taylororiginal> <TITLE>taylororiginal</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>TAYLORORIGINAL</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P> <P> Recovers the original expression (the one that was expanded) from the Taylor kernel that is given as its argument. <P> <P> <P> <H3> syntax: </H3> <em>taylororiginal</em>(<expression>) or <em>taylororiginal</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 taylororiginal hugo; ***** Taylor kernel doesn't have an original part in TAYLORORIGINAL on taylorkeeporiginal; hugo := taylor(exp(x),x,0,2); 1 2 3 HUGO := 1 + X + -*X + O(X ) 2 taylororiginal hugo; X E </TT></PRE><P>An error is signalled if the argument is not a Taylor kernel or if the original expression was not kept, i.e. if <A HREF=r37_0539.html>taylorkeeporiginal</A> was set <em>off</em> during expansi on. <P> <P> <P>