Click or drag to resize

IRandomNumberDistributionTFill Method

Use the given random number stream to fill a vector with random numbers which follow a particular probability distribution (to be specifed by implementing classes).

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

Parameters

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