C# Class Encog.MathUtil.Randomize.ConsistentRandomizer

Inheritance: BasicRandomizer
Afficher le fichier Open project: encog/encog-silverlight-core Class Usage Examples

Méthodes publiques

Méthode Description
ConsistentRandomizer ( double min, double max ) : Encog.Neural.Networks

Construct a range randomizer.

ConsistentRandomizer ( double min, double max, int seed ) : Encog.Neural.Networks

Construct a range randomizer.

Randomize ( double d ) : double

Generate a random number based on the range specified in the constructor.

Randomize ( BasicNetwork network ) : void

Randomize the network.

Method Details

ConsistentRandomizer() public méthode

Construct a range randomizer.
public ConsistentRandomizer ( double min, double max ) : Encog.Neural.Networks
min double The minimum random value.
max double The maximum random value.
Résultat Encog.Neural.Networks

ConsistentRandomizer() public méthode

Construct a range randomizer.
public ConsistentRandomizer ( double min, double max, int seed ) : Encog.Neural.Networks
min double The minimum random value.
max double The maximum random value.
seed int The seed value.
Résultat Encog.Neural.Networks

Randomize() public méthode

Generate a random number based on the range specified in the constructor.
public Randomize ( double d ) : double
d double The range randomizer ignores this value.
Résultat double

Randomize() public méthode

Randomize the network.
public Randomize ( BasicNetwork network ) : void
network Encog.Neural.Networks.BasicNetwork The network to randomize.
Résultat void