Artifact 0890e14697cc62bcd6092726d52965a15fbb6064f0bc432997448df14e1c7db4:
- Executable file
r37/lisp/csl/html/r37_0615.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: 871) [annotate] [blame] [check-ins using] [more...]
<A NAME=sub_matrix> <TITLE>sub_matrix</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>SUB_MATRIX</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P> <P> <P> <P> <P> <H3> syntax: </H3> <em>sub_matrix</em>(<matrix>,<row\_list>,<column\_list>) <P> <P> <P> <matrix> :- a matrix. <row\_list>, <column\_list> :- either a positive integer or a list of positive integers. <P> <P> namesub_matrix produces the matrix consisting of the intersection of the rows specified in <row\_list> and the columns specified in <column\_list>. <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> sub_matrix(A,{1,3},{2,3}); [2 3] [ ] [8 9] </TT></PRE><P>Related functions: <A HREF=r37_0576.html>augment_columns</A>, <A HREF=r37_0614.html>stack_rows</A>. <P> <P>