Click or drag to resize

RandomExtensionsNextDoubles(Random, Int32) Method

Returns an array of uniform 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.3179.0 (4.8.3179.0)
Syntax
C#
public static double[] NextDoubles(
	this Random rnd,
	int count
)

Parameters

rnd  Random
The random number generator.
count  Int32
The size of the array to fill.

Return Value

Double

[Missing <returns> documentation for "M:Altaxo.Calc.Random.RandomExtensions.NextDoubles(System.Random,System.Int32)"]

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Random. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Remarks
This extension is thread-safe if and only if called on an random number generator provided by Math.NET Numerics or derived from the RandomSource class.
See Also