DiscreteDistribution<T>.SampleLevels Method
Fills an array with the level indexes of random samples from
this DiscreteDistribution<T>.
DefinitionPermalink
Namespace: Numerics.NET.Statistics.Distributions
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0
public void SampleLevels(
Random random,
int[] samples,
int startIndex,
int length
)
ParametersPermalink
RemarksPermalink
This method fills a block of length elements of samples, starting at index startIndex with random samples from the distribution.
ExceptionsPermalink
Argument | samples is null. -or- random is null. |
Argument | startIndex is less than zero. -or- length is less than zero. |
Argument | length is greater than the number of elements from startIndex to the end of samples. |