Artifact e84dd59e7580f286ee0996fbea89a3a33a8825f66c0a6a7b5cc2f31949f08389:
- Executable file
r37/lisp/csl/html/r37_0027.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: 885) [annotate] [blame] [check-ins using] [more...]
<A NAME=plussign> <TITLE>plussign</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>+</B> _ _ _ <B>PLUSSIGN</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P> <P> The <em>+</em> operator is a prefix or infix n-ary addition operator. <P> <P> <P> <H3> syntax: </H3> <expression> { <em>+</em><expression>}+ <P> <P> or <em>+</em>(<expression> {,<expression>}+) <P> <P> <P> <expression> may be any valid REDUCE expression. <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> x**4 + 4*x**2 + 17*x + 1; 4 2 X + 4*X + 17*X + 1 14 + 15 + x; X + 29 +(1,2,3,4,5); 15 </TT></PRE><P><em>+</em>is also valid as an addition operator for <A HREF=r37_0345.html>matrix</A> variables that are of the same dimensions and for <A HREF=r37_0045.html>equation</A>s. <P> <P> <P>