Artifact 41a995d752f590a4e955cf3faaa3024f12ae8c92cb9051fa643340d74cdac1d3:
- Executable file
r37/lisp/csl/html/r37_0107.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: 1028) [annotate] [blame] [check-ins using] [more...]
<A NAME=TIMES> <TITLE>TIMES</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>TIMES</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P> <P> The <em>times</em> operator is an infix or prefix n-ary multiplication operator. It is identical to <em>*</em>. <P> <H3> syntax: </H3> <P> <P> <expression> <em>times</em> <expression> {<em>times</em> <express ion>}* <P> <P> or <em>times</em>(<expression>,<expression> {,<expression>}*) <P> <P> <P> <expression> can be any valid REDUCE scalar or matrix expression. Matrix expressions must be of the correct dimensions. Compatible scalar and matrix expressions can be mixed. <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> var1 times var2; VAR1*VAR2 times(6,5); 30 matrix aa,bb; aa := mat((1),(2),(x))$ bb := mat((0,3,1))$ aa times bb times 5; [0 15 5 ] [ ] [0 30 10 ] [ ] [0 15*X 5*X] </TT></PRE><P>