Click or drag to resize

FloatRandomWeibullDistributionFill(RandomNumberStream, Single, Int32, Int32) Method

Uses the given random number stream to fill the given array of integers with random values.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public void Fill(
	RandomNumberStream stream,
	float[] v,
	int start,
	int n
)

Parameters

stream  RandomNumberStream
Random number stream.
v  Single
Vector to fill.
start  Int32
Index at which to start placing random deviates.
n  Int32
Number of random deviates to produce.

Implements

IRandomNumberDistributionTFill(RandomNumberStream, T, Int32, Int32)
Exceptions
ExceptionCondition
InvalidArgumentExceptionThrown if n + start exceeds the length of the given array.
Remarks
v must be initialized before calling this method.
See Also