Artifact 343ce9eae17eac58aad213db8311f741f85143a6441cb75f02223a5e992be941:
- Executable file
r37/lisp/csl/html/r37_0097.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: 1039) [annotate] [blame] [check-ins using] [more...]
<A NAME=PLUS> <TITLE>PLUS</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>PLUS</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P> <P> The <em>plus</em> operator is both an infix and prefix n-ary addition operator. It exists because of the way in which REDUCE handles such operators internally, and is not recommended for use in algebraic mode programming. <A HREF=r37_0027.html>plussign</A>, which has the identical effect, should be used instead. <P> <H3> syntax: </H3> <P> <P> <em>plus</em>(<expression>,<expression>{,<expression>} *) or <P> <P> <expression> <em>plus</em> <expression> {<em>plus</em> <expressio n>}* <P> <P> <P> <expression> can be any valid REDUCE expression, including matrix expressions of the same dimensions. <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> a plus b plus c plus d; A + B + C + D 4.5 plus 10; 29 -- 2 plus(x**2,y**2); 2 2 X + Y </TT></PRE><P>