RandomExtensions.FillNormal(Random, IList<Double>) Method

Fills a list with normal random numbers with zero mean and unit standard deviation.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static void FillNormal(
	this Random random,
	IList<double> samples
)

Parameters

random  Random
A random number generator used to generate the samples.
samples  IList<Double>
A Double array.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Random. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

Exceptions

ArgumentNullExceptionsamples is null.

See Also