cmatrix.Matrix.reversal

Matrix.reversal()

Boolean test to verify the reversability

Returns
bint

Test the reversality of the self matrix.

See also

square()
det()

Examples

>>> m=rand(3)
>>> print(m)
| +0.000 | +0.000 | +8.000 |
| +2.000 | +7.000 | +8.000 |
| +8.000 | +7.000 | +2.000 |
printed
>>> print(m.reversal())
True