Click or drag to resize
GeMatrixInequality Operator
Returns True if two matrices are not equal, otherwise returns False.

Namespace: FDF.Common.Geometries
Assembly: FDF.Common (in FDF.Common.dll) Version: 3.0.0.0
Syntax
public static bool operator !=(
	GeMatrix m1,
	GeMatrix m2
)

Parameters

m1
Type: FDF.Common.GeometriesGeMatrix
The first matrix to compare.
m2
Type: FDF.Common.GeometriesGeMatrix
The second matrix to compare.

Return Value

Type: Boolean
Boolean that indicates whether the two matrix instances are inequal.
Remarks
Note that double values can acquire error when operated upon, so that an exact comparison between two values that are logically inequal may fail. Furthermore, using this equality operator, Double.NaN is not equal to itself.
See Also