Artifact b8a65a91a71da8003e475c4f447882c368691d152cf26fa5eca86719936f2f85:
- Executable file
r37/lisp/csl/html/r37_0611.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: 1284) [annotate] [blame] [check-ins using] [more...]
<A NAME=rows_pivot> <TITLE>rows_pivot</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>ROWS_PIVOT</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P> <P> <P> <P> <P> <H3> syntax: </H3> <em>rows_pivot</em>(<matrix>,<r>,<c>,{<row\_list>}) <P> <P> <P> <matrix> :- a namerefmatrix. <P> <P> <r>,<c> :- positive integers such that <matrix>(<r>, <c>) neq 0. <P> <P> <row\_list> :- positive integer or a list of positive integers. <P> <P> <em>rows_pivot</em>performs the same task as <em>pivot</em> but applies the pivot only to the rows specified in <row\_list>. <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> N := mat((1,2,3),(4,5,6),(7,8,9),(1,2,3),(4,5,6)); [1 2 3] [ ] [4 5 6] [ ] n := [7 8 9] [ ] [1 2 3] [ ] [4 5 6] rows_pivot(N,2,3,{4,5}); [1 2 3] [ ] [4 5 6] [ ] [7 8 9] [ ] [ - 1 ] [-1 ------ 0] [ 2 ] [ ] [0 0 0] </TT></PRE><P>Related functions: <A HREF=r37_0605.html>pivot</A>. <P> <P>