Artifact 111a03bebf943f043215ff3579e9430edfc00cef5becd1dfa02359d1beb748fc:
- Executable file
r37/lisp/csl/html/r37_0576.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: 1067) [annotate] [blame] [check-ins using] [more...]
<A NAME=augment_columns> <TITLE>augment_columns</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>AUGMENT_COLUMNS</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P> <P> Augment columns, stack rows: <P> <P> <P> <H3> syntax: </H3> <em>augment_columns</em>(<matrix>,<column\_list>) <P> <P> <P> <matrix> :- a matrix. <P> <P> <column\_list> :- either a positive integer or a list of positive integers. <P> <P> <em>augment_columns</em>gets hold of the columns of <matrix> specified in <em>column_list</em> and sticks them together. <P> <P> <em>stack_rows</em>performs the same task on rows of <matrix>. <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> augment_columns(A,{1,2}) [1 2] [ ] [4 5] [ ] [7 8] stack_rows(A,{1,3}) [1 2 3] [ ] [7 8 9] </TT></PRE><P>Related functions: <A HREF=r37_0589.html>get_columns</A>, <A HREF=r37_0590.html>get_rows</A>, <A HREF=r37_0615.html>sub_matrix</A>. <P> <P>