| MatrixTDepthMul Method (MatrixTDepth) |
http://www.emgu.com Multiply the current matrix with mat2
Namespace: Emgu.CVAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
Syntaxpublic 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
)
member Mul :
mat2 : Matrix<'TDepth> -> Matrix<'TDepth>
Parameters
- mat2
- Type: Emgu.CVMatrixTDepth
The matrix to be multiplied
Return Value
Type:
MatrixTDepth Result matrix of the multiplication
See Also