Click or drag to resize

Mcg59Doubles(Int32, Int32) Method

Returns an array of random numbers greater than or equal to 0.0 and less than 1.0.

Namespace: Altaxo.Calc.Random
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static double[] Doubles(
	int length,
	int seed
)

Parameters

length  Int32
The number of random samples to generate.
seed  Int32
The seed value used to initialize the generator.

Return Value

Double
An array of uniformly distributed doubles greater than or equal to 0.0 and less than 1.0.
Remarks
Supports being called in parallel from multiple threads.
See Also