val * mat1

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public static Matrix<TDepth> operator *(
	double val,
	Matrix<TDepth> mat1
)
Public Shared Operator * ( _
	val As Double, _
	mat1 As Matrix(Of TDepth) _
) As Matrix(Of TDepth)
public:
static Matrix<TDepth>^ operator *(
	double val, 
	Matrix<TDepth>^ mat1
)

Parameters

val
Double
The value to be multiplied
mat1
Matrix<(Of <(<'TDepth>)>)>
The matrix to be multiplied

Return Value

val * mat1

See Also