C# Класс Encog.Neural.NeuralData.Bipolar.BiPolarNeuralData

Наследование: INeuralData
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
BiPolarNeuralData ( bool d ) : System

Construct this object with the specified data.

BiPolarNeuralData ( int size ) : System

Construct a data object with the specified size.

Clear ( ) : void

Clear to false.

Clone ( ) : object

Clone this object.

GetBoolean ( int i ) : bool

Get the specified data item as a boolean.

SetBoolean ( int index, bool b ) : void

Set the value as a boolean.

this ( int x ) : double

Allowes indexed access to the data.

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

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

Construct this object with the specified data.
public BiPolarNeuralData ( bool d ) : System
d bool The data to create this object with.
Результат System

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

Construct a data object with the specified size.
public BiPolarNeuralData ( int size ) : System
size int The size of this data object.
Результат System

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

Clear to false.
public Clear ( ) : void
Результат void

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

Clone this object.
public Clone ( ) : object
Результат object

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

Get the specified data item as a boolean.
public GetBoolean ( int i ) : bool
i int
Результат bool

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

Set the value as a boolean.
public SetBoolean ( int index, bool b ) : void
index int The index.
b bool The boolean value.
Результат void

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

Allowes indexed access to the data.
public this ( int x ) : double
x int The index.
Результат double