CoCoA:IsAntiSymmetric

From ApCoCoAWiki
Revision as of 10:02, 24 October 2007 by XMLBot (talk | contribs) (pushing XML rev. 1.46, again)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

IsAntiSymmetric

checks if a matrix is anti-symmetric

Description

This function tests whether the square matrix M is anti-symmetric.

Example

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

Syntax

IsAntiSymmetric(M: MAT): BOOL
   <type>matrix</type>
   <type>boolean</type>

IsSymmetric