<A NAME=DIFFERENCE>
<TITLE>DIFFERENCE</TITLE></A>
<b><a href=r37_idx.html>INDEX</a></b><p><p>
<B>DIFFERENCE</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P>
<P>
The <em>difference</em> operator may be used as either an infix or prefix binary
subtraction operator. It is identical to <em>-</em> as a binary operator.
<P>
<P>
<P> <H3>
syntax: </H3>
<em>difference</em>(<expression>,<expression>) or
<P>
<P>
<expression> <em>difference</em> <expression>
{<em>difference</em> <expression>}*
<P>
<P>
<P>
<expression> can be a number or any other valid REDUCE expression. Matrix
expressions are allowed if they are of the same dimensions.
<P>
<P>
<P> <H3>
examples: </H3>
<P><PRE><TT>
difference(10,4);
6
15 difference 5 difference 2;
8
a difference b;
A - B
</TT></PRE><P>The <em>difference</em> operator is left associative, as shown in
the second
example above.
<P>
<P>
<P>
<P>