inverse abstract method

Matrix<T> inverse()

Returns the inverse of this matrix.

The inverse of a square matrix A, sometimes called a reciprocal matrix, is a matrix A-1 such that "A A-1 = I" where I is the identity matrix.

A square matrix has an inverse if and only if the determinant isn't 0.

A MatrixException object is thrown if the matrix isn't square.

Implementation

Matrix<T> inverse();