Click or drag to resize

AbstractRandomNumberStream Constructor

Constructs an AbstractRandomNumberStream from the given delegate. The delegate should return uniform random numbers in (0, 1).

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public AbstractRandomNumberStream(
	Func<double> rand
)

Parameters

rand  FuncDouble
Function returning uniform random numbers in (0, 1).
See Also