Artifact 552b990970ce8b43f7d210286b6ba3bc462fc5ac2b7036d196795705e1d6ef22:
- Executable file
r37/lisp/csl/html/r37_0599.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: 1172) [annotate] [blame] [check-ins using] [more...]
<A NAME=matrix_augment> <TITLE>matrix_augment</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>MATRIX_AUGMENT</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P> <P> Matrix augment, matrix stack: <P> <P> <P> <H3> syntax: </H3> <em>matrix_augment</em>{<matrix\_list>} <P> <P> <P> (If you are feeling lazy then the braces can be omitted.) <P> <P> <matrix\_list> :- matrices. <P> <P> <em>matrix_augment</em>sticks the matrices in <matrix\_list> together horizontally. <P> <P> <em>matrix_stack</em>sticks the matrices in <matrix\_list> together vertically. <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> matrix_augment({A,A}); [1 2 3 1 2 3] [ ] [4 5 6 4 5 6] [ ] [7 8 9 7 8 9] matrix_stack(A,A); [1 2 3] [ ] [4 5 6] [ ] [7 8 9] [ ] [1 2 3] [ ] [4 5 6] [ ] [7 8 9] </TT></PRE><P>Related functions: <A HREF=r37_0576.html>augment_columns</A>, <A HREF=r37_0614.html>stack_rows</A>, <A HREF=r37_0615.html>sub_matrix</A>. <P> <P>