DoubleMatrixRowGreaterThan Operator

Returns a value that indicates whether a DoubleMatrixRow instance is greater than another DoubleMatrixRow instance.

Definition

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

Parameters

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

Return Value

Boolean
true if left is greater than right; otherwise, false.

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.

See Also