FiniteDiscreteDistributionOnSample Method

Called when drawing a sample from this instance having the given size and returns it in a given destination array.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
protected override sealed void OnSample(
	int sampleSize,
	double[] destinationArray,
	int destinationIndex
)

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.

Remarks

The OnSample(Int32, Double, Int32) method allows derived classes to implement their own algorithm to draw a sample.

Notes to Inheritors

When overriding OnSample(Int32, Double, Int32), you can take for granted that sampleSize is greater than 0 and less than or equal to the difference between the length of parameter destinationArray and destinationIndex, and consists, on input, of zeroed entries.

See Also