| ColMat |
| Syntax |
ColMat(L: LIST): MAT ColMat(R: RING, L: LIST): MAT |
| Description |
| Example |
/**/ ColMat([3,4,5]); matrix(QQ, [[3], [4], [5]]) /**/ RingOf(It); -- default ring is QQ QQ /**/ ColMat(ZZ, [3,4,5]); matrix(ZZ, [[3], [4], [5]]) /**/ RingOf(It); ZZ |
| See Also |