Artifact 9642790bf2ab7a56195b569a14696d542866d1df9d19e6b4f88ba575fd31c8b1:
- Executable file
r37/lisp/csl/html/r37_0605.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: 1052) [annotate] [blame] [check-ins using] [more...]
<A NAME=pivot> <TITLE>pivot</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>PIVOT</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P> <P> <P> <P> <P> <H3> syntax: </H3> <em>pivot</em>(<matrix>,<r>,<c>) <P> <P> <P> <matrix> :- a matrix. <P> <P> <r>,<c> :- positive integers such that <matrix>(<r>, <c>) neq 0. <P> <P> <em>pivot</em>pivots <matrix> about it's (<r>,<c>)'th entry. <P> <P> To do this, multiples of the <r>'th row are added to every other row in the matrix. <P> <P> This means that the <c>'th column will be 0 except for the (<r>,<c>)'th entry. <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> pivot(A,2,3); [ - 1 ] [-1 ------ 0] [ 2 ] [ ] [4 5 6] [ ] [ 1 ] [1 --- 0] [ 2 ] </TT></PRE><P>Related functions: <A HREF=r37_0611.html>rows_pivot</A>. <P> <P>