We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Returns true if this is an antisymmetric matrix. Raises an error if matrix is not square.
m = Matrix[ [ 0, 1, -3], [-1, 0, -5], [ 3, 5, 0]] m.antisymmetric? # => true
Fast Matrix