Artifact 2cfce9e1a915d3173cf4d8682da4704d3dd75600cc9a905e1a52be0186fd9818:
- Executable file
r37/lisp/csl/html/r37_0608.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: 939) [annotate] [blame] [check-ins using] [more...]
<A NAME=remove_columns> <TITLE>remove_columns</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>REMOVE_COLUMNS</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P> <P> Remove columns, remove rows: <P> <P> <P> <H3> syntax: </H3> <em>remove_columns</em>(<matrix>,<column\_list>) <P> <P> <P> <matrix> :- a <A HREF=r37_0345.html>matrix</A>. <column\_list> :- either a positive integer or a list of positive integers. <P> <P> <em>remove_columns</em>removes the columns specified in <column\_list> from <matrix>. <P> <P> <em>remove_rows</em>performs the same task on the rows of <matrix>. <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> remove_columns(A,2); [1 3] [ ] [4 6] [ ] [7 9] remove_rows(A,{1,3}); [4 5 6] </TT></PRE><P>Related functions: <A HREF=r37_0602.html>minor</A>. <P> <P>