C# 클래스 Encog.Neural.Flat.FlatNetworkRBF

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

공개 메소드들

메소드 설명
Clone ( ) : Object

Clone the network.

Compute ( double x, double output ) : void

Calculate the output for the given input.

FlatNetworkRBF ( ) : System

Default constructor.

FlatNetworkRBF ( int inputCount, int hiddenCount, int outputCount, IRadialBasisFunction rbf ) : System

Construct an RBF flat network.

메소드 상세

Clone() 공개 최종 메소드

Clone the network.
public final Clone ( ) : Object
리턴 Object

Compute() 공개 최종 메소드

Calculate the output for the given input.
public final Compute ( double x, double output ) : void
x double The input.
output double Output will be placed here.
리턴 void

FlatNetworkRBF() 공개 메소드

Default constructor.
public FlatNetworkRBF ( ) : System
리턴 System

FlatNetworkRBF() 공개 메소드

Construct an RBF flat network.
public FlatNetworkRBF ( int inputCount, int hiddenCount, int outputCount, IRadialBasisFunction rbf ) : System
inputCount int The number of input neurons. (also the number of dimensions)
hiddenCount int The number of hidden neurons.
outputCount int The number of output neurons.
rbf IRadialBasisFunction
리턴 System