up previous next
IsAntiSymmetric

checks if a matrix is anti-symmetric

Syntax
IsAntiSymmetric(M: MAT): BOOL

Description
These functions return whether the square matrix M is anti-symmetric.

Example
  M := Mat([
           [0, 1, 2],
           [-1, 0, 3],
           [-2, -3, 0]
           ]);
  IsAntiSymmetric(M);
TRUE
-------------------------------


See Also