up previous next
ColMat

single column matrix
Syntax

ColMat(L:LIST):MAT


Description
This function return the matrix whose only column consists of the elements of the list L.

Example
  ColMat([3,4,5]);
Mat([
  [3],
  [4],
  [5]
])
-------------------------------


See Also