ContinuousDistribution.SampleInto Method

Definition

Namespace: Numerics.NET.Statistics.Distributions
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

SampleInto(Random, IList<Double>) Fills a list with random numbers from the distribution.
SampleInto(Random, Double[]) Fills a list with random numbers from the distribution.
SampleInto(Random, Span<Double>) Fills a span with random numbers from the distribution.
SampleInto(Random, IList<Double>, Int32, Int32) Fills part of a list with random numbers from the distribution.

SampleInto(Random, IList<Double>)

Fills a list with random numbers from the distribution.
C#
public void SampleInto(
	Random random,
	IList<double> samples
)

Parameters

random  Random
A Random object that specifies the uniform random number generator that is to be used to generate the samples.
samples  IList<Double>
An IList<Double>.

Remarks

This method fills the vector specified by samples, with random samples from the distribution.

Exceptions

ArgumentNullException

samples is null.

-or-

random is null.

SampleInto(Random, Double[])

Fills a list with random numbers from the distribution.
C#
public void SampleInto(
	Random random,
	double[] samples
)

Parameters

random  Random
A Random object that specifies the uniform random number generator that is to be used to generate the samples.
samples  Double[]
A double array.

Remarks

This method fills samples, with random samples from the distribution.

Exceptions

ArgumentNullException

samples is null.

-or-

random is null.

SampleInto(Random, Span<Double>)

Fills a span with random numbers from the distribution.
C#
public virtual void SampleInto(
	Random random,
	Span<double> samples
)

Parameters

random  Random
A Random object that specifies the uniform random number generator that is to be used to generate the samples.
samples  Span<Double>
A Span<T>.

Remarks

This method fills the vector specified by samples, with random samples from the distribution.

Exceptions

ArgumentNullException

samples is null.

-or-

random is null.

SampleInto(Random, IList<Double>, Int32, Int32)

Fills part of a list with random numbers from the distribution.
C#
public virtual void SampleInto(
	Random random,
	IList<double> samples,
	int startIndex,
	int length
)

Parameters

random  Random
A Random object that specifies the uniform random number generator that is to be used to generate the samples.
samples  IList<Double>
A IList<Double>.
startIndex  Int32
The zero-based index at which to begin filling the list.
length  Int32
The number of samples to provide.

Remarks

This method fills a block of length elements of samples, starting at index startIndex with random samples from the distribution.

Exceptions

ArgumentNullException

samples is null.

-or-

random is null.

ArgumentOutOfRangeException

startIndex is less than zero.

-or-

length is less than zero.

ArgumentException

length is greater than the number of elements from startIndex to the end of samples.

See Also