<A NAME=REVPRI>
<TITLE>REVPRI</TITLE></A>
<b><a href=r37_idx.html>INDEX</a></b><p><p>
<B>REVPRI</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>switch</B><P>
<P>
<P>
<P>
When the <em>revpri</em> switch is on, terms are printed in reverse order from
the normal printing order.
<P>
<P>
<P> <H3>
examples: </H3>
<P><PRE><TT>
x**5 + x**2 + 18 + sqrt(y);
5 2
SQRT(Y) + X + X + 18
a + b + c + w;
A + B + C + W
on revpri;
x**5 + x**2 + 18 + sqrt(y);
2 5
17 + X + X + SQRT(Y)
a + b + c + w;
W + C + B + A
</TT></PRE><P>Turn <em>revpri</em> on when you want to display a polynomial in a
scending
rather than descending order.
<P>
<P>
<P>