Click or drag to resize
Accord.NET (logo)

IRandomNumberGeneratorT Interface

Interface for random number generators.

Namespace:  Accord.Math.Random
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public interface IRandomNumberGenerator<T>

Type Parameters

T
Methods
  NameDescription
Public methodGenerate
Generates a random observation from the current distribution.
Public methodGenerate(Int32)
Generates a random vector of observations from the current distribution.
Public methodGenerate(Int32, T)
Generates a random vector of observations from the current distribution.
Top
Remarks

The interface defines set of methods and properties, which should be implemented by different algorithms for random numbers generation.

See Also