Click or drag to resize

NMathFunctionsIf(Int32, FuncInt32, Boolean, Int32) Method

Creates a new array by applying a logical function to the elements of an array. Elements in the original array that return true are set to the given true value in the new array; elements that return false are not changed.

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

Parameters

data  Int32
An array of integers.
function  FuncInt32, Boolean
A function that takes an integer and returns a boolean.
ifTrue  Int32
Value in case of true.

Return Value

Int32
A new array.
See Also