Click or drag to resize

DoubleMatrixRowCompareTo Method (DoubleMatrixRow)

Compares the current object with another object of the same type.

Namespace:  Novacta.Analytics
Assembly:  Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.0.0
Syntax
public int CompareTo(
	DoubleMatrixRow other
)

Parameters

other
Type: Novacta.AnalyticsDoubleMatrixRow
An object to compare with this object.

Return Value

Type: Int32
A value that indicates the relative order of the objects being compared. The return value has the following meanings:
ValueMeaning
Less than zeroThis object is less than the other parameter.
ZeroThis object is equal to other.
Greater than zeroThis object is greater than other.

Implements

IComparableTCompareTo(T)
Remarks

DoubleMatrixRow instances are quasi-lexicographically ordered. This means that instances are firstly ordered by their Length, and then, within rows having the same length, by lexicographic order.

This also means that when tested for equality, DoubleMatrixRow 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