Artifact be53420677cc0737ac13caa2ae7c360a20b81b53947199db91ad59c66d14a629:
- Executable file
r37/lisp/csl/html/r37_0077.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: 1016) [annotate] [blame] [check-ins using] [more...]
<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>