Click or drag to resize

ColumnMathIsMonotonicallyIncreasing(DoubleColumn, Boolean) Method

Determines if column c has monotonically increasing values.

Namespace: Altaxo.Data
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static bool IsMonotonicallyIncreasing(
	this DoubleColumn c,
	bool allowNaN
)

Parameters

c  DoubleColumn
Column to test.
allowNaN  Boolean
If true, NaN values will ignored. If false, the function will return false if there are NaN values present.

Return Value

Boolean
True if the values are monotonically increasing.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type DoubleColumn. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also