C# Класс YAMP.Numerics.Distribution

Declares common functionality for all random number distributions.
Показать файл Открыть проект

Защищенные свойства (Protected)

Свойство Тип Описание
standardGenerator Generator

Открытые методы

Метод Описание
NextDouble ( ) : double

Returns a distributed floating point random number.

Reset ( ) : bool

Resets the random number distribution, so that it produces the same random number sequence again.

Защищенные методы

Метод Описание
Distribution ( ) : System

Initializes a new instance of the Distribution class, using a StandardGenerator as underlying random number generator.

Distribution ( Generator generator ) : System

Initializes a new instance of the Distribution class, using the specified Generator as underlying random number generator.

Описание методов

Distribution() защищенный Метод

Initializes a new instance of the Distribution class, using a StandardGenerator as underlying random number generator.
protected Distribution ( ) : System
Результат System

Distribution() защищенный Метод

Initializes a new instance of the Distribution class, using the specified Generator as underlying random number generator.
/// Generator is NULL (Nothing in Visual Basic). ///
protected Distribution ( Generator generator ) : System
generator Generator A Generator object.
Результат System

NextDouble() публичный абстрактный Метод

Returns a distributed floating point random number.
public abstract NextDouble ( ) : double
Результат double

Reset() публичный Метод

Resets the random number distribution, so that it produces the same random number sequence again.
public Reset ( ) : bool
Результат bool

Описание свойств

standardGenerator защищенное статическое свойство

Gets the standard genertor to use (MT19937).
protected static Generator standardGenerator
Результат Generator