<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>