Click or drag to resize

ComplexMatrixRowEquality Operator

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

Namespace:  Novacta.Analytics
Assembly:  Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.0.0
Syntax
public static bool operator ==(
	ComplexMatrixRow left,
	ComplexMatrixRow right
)

Parameters

left
Type: Novacta.AnalyticsComplexMatrixRow
The first instance to compare.
right
Type: Novacta.AnalyticsComplexMatrixRow
The second instance to compare.

Return Value

Type: Boolean
true if left is 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