Method Multiply
Multiply(Mat, Mat)
Multiplies the elements of two matrices.
Declaration
public static Mat Multiply(this Mat mat1, Mat mat2)
Parameters
Type | Name | Description |
---|---|---|
Mat | mat1 | The first input matrix. |
Mat | mat2 | The second input matrix. |
Returns
Type | Description |
---|---|
Mat | A new matrix that is the product of mat1 and mat2. |