Click or drag to resize

NMathFunctionsNaNIf(IDFColumn, FuncDouble, Boolean) Method

Creates an array of boolean values determined by applying a logical function to the elements of a column that are not missing.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static bool[] NaNIf(
	IDFColumn data,
	Func<double, bool> function
)

Parameters

data  IDFColumn
A column.
function  FuncDouble, Boolean
A function that takes a double and returns a boolean.

Return Value

Boolean
An array of boolean values.
Exceptions
ExceptionCondition
InvalidArgumentException Thrown if data is not numeric.
See Also