| BlockMat |
| Syntax |
BlockMat(LIST of LIST of MAT): MAT |
| Description |
| Example |
/**/ A := RowMat([1,2,3,4]); B := RowMat([0,0]); -- /**/ BlockMat(A,B, B,A); --> !!! ERROR !!! as expected /**/ BlockMat2x2(A,B, B,A); // or equivalently /**/ BlockMat([[A,B], [B,A]]); matrix(QQ, [[1, 2, 3, 4, 0, 0], [0, 0, 1, 2, 3, 4]]) |
| See Also |