Cog3DMatrix3x3 SetElement Method Cognex VisionPro 9.7
Sets one element of the matrix.

Namespace: Cognex.VisionPro3D
Assembly: Cognex.VisionPro3D.Core (in Cognex.VisionPro3D.Core.dll) Version: 73.0.0.0
Syntax

public void SetElement(
	int rowIndex,
	int colIndex,
	double value
)

Parameters

rowIndex
Type: System Int32
The zero-based row index of the matrix.
colIndex
Type: System Int32
The zero-based column index of the matrix.
value
Type: System Double
The value of the element at the given row and column.
Exceptions

ExceptionCondition
ArgumentException If rowIndex or colIndex is not inside range [0,2].
Remarks

This setter recalculates Determinant.
See Also