Artifact 95ad405d1310eeb3c5fef3e150630c3e2cca83bb8dac16c26a16af904e8655b1:
- Executable file
r37/lisp/csl/html/r37_0578.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: 1052) [annotate] [blame] [check-ins using] [more...]
<A NAME=block_matrix> <TITLE>block_matrix</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>BLOCK_MATRIX</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P> <P> <P> <P> <P> <H3> syntax: </H3> <em>block_matrix</em>(<r>,<c>,<matrix\_list>) <P> <P> <P> <r>,<c> :- positive integers. <P> <P> <matrix\_list> :- a list of matrices. <P> <P> <em>block_matrix</em>creates a matrix that consists of <r> by <c> matrices filled from the <matrix\_list> row wise. <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> B := make_identity(2); [1 0] b := [ ] [0 1] C := mat((5),(5)); [5] c := [ ] [5] D := mat((22,33),(44,55)); [22 33] d := [ ] [44 55] block_matrix(2,3,{B,C,D,D,C,B}); [1 0 5 22 33] [ ] [0 1 5 44 55] [ ] [22 33 5 1 0 ] [ ] [44 55 5 0 1 ] </TT></PRE><P>