Artifact c1baf48c4c5a02dbefa162093c10658306fd5b676c21ed55ff27332dafe62486:
- Executable file
r37/lisp/csl/html/r37_0309.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: 793) [annotate] [blame] [check-ins using] [more...]
<A NAME=NERO> <TITLE>NERO</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>NERO</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>switch</B><P> <P> <P> <P> When <em>nero</em> is on, zero assignments (such as matrix elements) are not printed. <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> matrix a; a := mat((1,0),(0,1)); A(1,1) := 1 A(1,2) := 0 A(2,1) := 0 A(2,2) := 1 on nero; a; MAT(1,1) := 1 MAT(2,2) := 1 a(1,2); </TT></PRE><P>nothing is printed.<P><PRE><TT> b := 0; </TT></PRE><P>nothing is printed.<P><PRE><TT> off nero; b := 0; B := 0 </TT></PRE><P> <P> <P> <em>nero</em>is often used when dealing with large sparse matrices, to avoid being overloaded with zero assignments. <P> <P> <P>