Click or drag to resize

RandomExtensionsNextBigIntegerSequence Method

Returns an infinite sequence of uniform random BigInteger within the specified range.

Namespace: Altaxo.Calc.Random
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static IEnumerable<BigInteger> NextBigIntegerSequence(
	this Random rnd,
	BigInteger minInclusive,
	BigInteger maxExclusive
)

Parameters

rnd  Random

[Missing <param name="rnd"/> documentation for "M:Altaxo.Calc.Random.RandomExtensions.NextBigIntegerSequence(System.Random,System.Numerics.BigInteger,System.Numerics.BigInteger)"]

minInclusive  BigInteger

[Missing <param name="minInclusive"/> documentation for "M:Altaxo.Calc.Random.RandomExtensions.NextBigIntegerSequence(System.Random,System.Numerics.BigInteger,System.Numerics.BigInteger)"]

maxExclusive  BigInteger

[Missing <param name="maxExclusive"/> documentation for "M:Altaxo.Calc.Random.RandomExtensions.NextBigIntegerSequence(System.Random,System.Numerics.BigInteger,System.Numerics.BigInteger)"]

Return Value

IEnumerableBigInteger

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

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