<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>