Subtraction Operator (Matrix)
In This Topic
Defines the binary - 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 binary nimus operation result of two operands.
See Also