C# 클래스 Encog.MathUtil.Randomize.ConsistentRandomizer

상속: BasicRandomizer
파일 보기 프로젝트 열기: encog/encog-silverlight-core 1 사용 예제들

공개 메소드들

메소드 설명
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.

메소드 상세

ConsistentRandomizer() 공개 메소드

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.
리턴 Encog.Neural.Networks

ConsistentRandomizer() 공개 메소드

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.
리턴 Encog.Neural.Networks

Randomize() 공개 메소드

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.
리턴 double

Randomize() 공개 메소드

Randomize the network.
public Randomize ( BasicNetwork network ) : void
network Encog.Neural.Networks.BasicNetwork The network to randomize.
리턴 void