Scythe-1.0.3
template<typename T_type = double, matrix_order ORDER = Col, matrix_style STYLE = Concrete>
bool scythe::Matrix< T_type, ORDER, STYLE >::isSkewSymmetric ( ) const [inline]

Returns true if this Matrix is equal to its negated transpose.

A Matrix is skew symmetric when $-M^T = M$ or, equivalently, $-M^{-1} M^T = I$. In simple terms, this means that the (i, j)th element of the Matrix is equal to the negation of the (j, i)th element for all i, j.

See also:
isSymmetric()