dot function

Matrix dot(
  1. Matrix matrixA,
  2. Matrix matrixB
)

dot product of two matrices

  • matrixA The first matrix
  • matrixB The second matrix
  • Returns The new matrix

Implementation

Matrix dot(Matrix matrixA, Matrix matrixB) {
  return matrixA.dot(matrixB);
}