up previous next
HadamardBoundSq    --    Hadamard bound for determinant


Syntax
HadamardBoundSq(M: MAT): RECORD

Description
This computes square of the Hadamard determinant bound (both for rows and for columns). The result is a record with two fields HadamardColBound and HadamardRowBound.

Example
/**/  M := mat([[1,2],[3,4]]);
/**/  HadamardBoundSq(M);
record[HadamardColBound := 200, HadamardRowBound := 125]

See Also