C# Класс Encog.Normalize.Output.OutputFieldDirect

A direct output field, will simply pass the input value to the output.
Наследование: BasicOutputField
Показать файл Открыть проект

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

Метод Описание
Calculate ( int subfield ) : double

Calculate the value for this field. This will simply be the value from the input field.

OutputFieldDirect ( ) : System

Default constructor for reflection.

OutputFieldDirect ( IInputField sourceField ) : System

Construct a direct output field.

RowInit ( ) : void

Not needed for this sort of output field.

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

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

Calculate the value for this field. This will simply be the value from the input field.
public Calculate ( int subfield ) : double
subfield int Not used, as this output field type does not /// support subfields.
Результат double

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

Default constructor for reflection.
public OutputFieldDirect ( ) : System
Результат System

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

Construct a direct output field.
public OutputFieldDirect ( IInputField sourceField ) : System
sourceField IInputField The source field to pass directly on.
Результат System

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

Not needed for this sort of output field.
public RowInit ( ) : void
Результат void