multiplyMat method

Mat multiplyMat(
  1. Mat other, {
  2. bool inplace = false,
})

Matrix multiplication

Wrapper for Mat &operator*=(Mat &a, const Mat &b)

Implementation

Mat multiplyMat(Mat other, {bool inplace = false}) =>
    _opMat(other, ccore.Mat_MultiplyMat, inplace: inplace);