ComplexMatrixRowInequality Operator

Returns a value that indicates whether a ComplexMatrixRow instance is not equal to another ComplexMatrixRow instance.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public static bool operator !=(
	ComplexMatrixRow left,
	ComplexMatrixRow right
)

Parameters

left  ComplexMatrixRow
The first instance to compare.
right  ComplexMatrixRow
The second instance to compare.

Return Value

Boolean
true if left is not equal to right; otherwise, false.

Remarks

When tested for equality, ComplexMatrixRow instances are considered equal if and only if they have the same Length and, for each column index, entries corresponding to such index are equal, too.

See Also