Division operator for one matrix and another matrix. This operator is defined as
matrix / rhs = matrix * rhs.Inverse()
Namespace: Cognex.VisionPro3DAssembly: Cognex.VisionPro3D.Core (in Cognex.VisionPro3D.Core.dll) Version: 65.1.0.0
Syntax
Parameters
- matrix
- Type: Cognex.VisionPro3D Cog3DMatrix3x3
The first matrix. May not be null.
- rhs
- Type: Cognex.VisionPro3D Cog3DMatrix3x3
The second matrix. May not be null.
Return Value
Type: Cog3DMatrix3x3The resulting 3x3 matrix.
Exceptions
| Exception | Condition |
|---|---|
| ArgumentNullException | If any input argument is null. |
| Cog3DException | If rhs is singular. |
See Also