Divide two matrices
matrixB
Matrix divide(Matrix matrixB) { return _performOperation(matrixB, (a, b) => a / b); }