Add two matrices
matrixB
Matrix add(Matrix matrixB) { return _performOperation(matrixB, (a, b) => a + b); }