RandomNumberGeneratorGaussian(Int32, Double, Int32, Double, Double) Method

Draws a sample point from a Gaussian distribution having the specified parameters.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public void Gaussian(
	int sampleSize,
	double[] destinationArray,
	int destinationIndex,
	double mu,
	double sigma
)

Parameters

sampleSize  Int32
The sample size.
destinationArray  Double
The destination array that receives the sampled data.
destinationIndex  Int32
The index in destinationArray at which storing begins.
mu  Double
The location parameter.
sigma  Double
The scale parameter.

Exceptions

ArgumentNullExceptiondestinationArray is null.
ArgumentOutOfRangeExceptionsampleSize is not positive.
-or-
destinationIndex is negative.
-or-
sigma is not positive.
ArgumentException Parameter sampleSize must be less than or equal to the difference between the length of parameter destinationArray and destinationIndex.

See Also