Multiplication Operator (Matrix)
In This Topic
Defines the * operator for Matrix class.
Syntax
'Declaration
Public Operator *( _
ByVal As Matrix, _
ByVal As Matrix _
) As Matrix
public Matrix operator *(
Matrix ,
Matrix
)
Parameters
- left
- A Matrix indicates the left operand.
- right
- A Matrix indicates the right operand.
Return Value
A Matrix indicates the multiplication operation result of two operands.
See Also