Multiply the current matrix with mat2

Namespace: Emgu.CV
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.0.1010 (2.2.0.1010)

Syntax

         
 C#  Visual Basic  Visual C++ 
public Matrix<TDepth> Mul(
	Matrix<TDepth> mat2
)
Public Function Mul ( _
	mat2 As Matrix(Of TDepth) _
) As Matrix(Of TDepth)
public:
Matrix<TDepth>^ Mul(
	Matrix<TDepth>^ mat2
)

Parameters

mat2
Matrix<(Of <(<'TDepth>)>)>
The matrix to be multiplied

Return Value

Result matrix of the multiplication

See Also