Click or drag to resize

NMathFunctionsFillArrayWithNormalRandomNumbers Method

Fills the given array with normally distributed random numbers.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static void FillArrayWithNormalRandomNumbers(
	int seed,
	double mean,
	double standardDeviation,
	double[] array
)

Parameters

seed  Int32
Seed for the random number generator.
mean  Double
>Desired mean of the deviates.
standardDeviation  Double
Desired standard deviation of the deviates.
array  Double
Random deviants will be placed in this array.
See Also