Subtract two matrices
matrixB
Matrix subtract(Matrix matrixB) { return _performOperation(matrixB, (a, b) => a - b); }