record Matrix : TypeA 2x2 matrix of floating point numbers
.x11 : Matrix -> Doublex11 : Matrix -> Double.x12 : Matrix -> Doublex12 : Matrix -> Double.x21 : Matrix -> Doublex21 : Matrix -> Double.x22 : Matrix -> Doublex22 : Matrix -> Double(+) : Matrix -> Matrix -> MatrixMatrix addition
(*) : Matrix -> Matrix -> MatrixMatrix multiplication
inverse : Matrix -> Maybe MatrixTries to compute the inverse of a matrix
This fails if the determinant of the matrix equals zero.