Artifact 935c32aa593f36e102d9cfa3a20ac02694a07f6c3b933211616374d1c594e7d9:
- Executable file
r37/lisp/csl/html/r37_0295.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: 803) [annotate] [blame] [check-ins using] [more...]
<A NAME=HORNER> <TITLE>HORNER</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>HORNER</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>switch</B><P> <P> <P> <P> When the <em>horner</em> switch is on, polynomial expressions are printed in Horner's form for faster and safer numerical evaluation. Default is <em>off</em>. The leading variable of the expression is selected as Horner variable. To select the Horner variable explicitly use the <A HREF=r37_0198.html>korder</A> declaration. <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> on horner; (13p-4q)^3; 3 2 ( - 64)*q + p*(624*q + p*(( - 2028)*q + p*2197)) korder q; ws; 3 2 2197*p + q*(( - 2028)*p + q*(624*p + q*(-64))) </TT></PRE><P>