divide method

Matrix divide(
  1. Matrix matrixB
)

Divide two matrices

  • matrixB The matrix to divide
  • Returns The new matrix

Implementation

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