Click or drag to resize

NMathFunctionsNaNIf(Double, FuncDouble, Boolean) Method

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

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

Parameters

data  Double
An array of doubles.
function  FuncDouble, Boolean
A function that takes a double and returns a boolean.

Return Value

Boolean
A boolean array.
See Also