[back] [prev] [next] [index] [root]

 


MatHermiteColLower

missing shortdoc

Syntax:

H := MatHermiteColLower(M);

matrix
  H  
matrix
  M  

Description:

Computes the lower column Hermite normal form of the integer matrix M.


Example:

Compute the lower column Hermite normal form of \left(\begin{array}{ccc}4 & 6 & 2 3 & 9 & 12 \end{array}right).

kash> M := Mat(Z,[[4,6,2],[3,9,12]]);
[ 4  6  2]
[ 3  9 12]
kash> MatHermiteColLower(M);
> [2 0 0]
[0 3 0]


<- back[back] [prev] [next] [index] [root]