Artifact 3204978042e530a55947c8c470c372bf9a97f9e2c5aac9400fc7c8446f55e71f:
- Executable file
r37/lisp/csl/html/r37_0585.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: 1364) [annotate] [blame] [check-ins using] [more...]
<A NAME=copy_into> <TITLE>copy_into</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>COPY_INTO</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P> <P> <P> <P> <P> <H3> syntax: </H3> <em>copy_into</em>(<A>,<B>,<r>,<c>) <P> <P> <P> <A>,<B> :- matrices. <P> <P> <r>,<c> :- positive integers. <P> <P> <em>copy_into</em>copies matrix <matrix> into <B> with <matrix>(1,1) at <B>(<r>,<c>). <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> G := mat((0,0,0,0,0),(0,0,0,0,0),(0,0,0,0,0),(0,0,0,0,0),(0,0,0,0,0)); [0 0 0 0 0] [ ] [0 0 0 0 0] [ ] g := [0 0 0 0 0] [ ] [0 0 0 0 0] [ ] [0 0 0 0 0] copy_into(A,G,1,2); [0 1 2 3 0] [ ] [0 4 5 6 0] [ ] [0 7 8 9 0] [ ] [0 0 0 0 0] [ ] [0 0 0 0 0] </TT></PRE><P>Related functions: <A HREF=r37_0576.html>augment_columns</A>, <A HREF=r37_0587.html>extend</A>, <A HREF=r37_0599.html>matrix_augment</A>, <A HREF=r37_0601.html>matrix_stack</A>, <A HREF=r37_0614.html>stack_rows</A>, <A HREF=r37_0615.html>sub_matrix</A>. <P> <P>