C# Класс Encog.Util.Normalize.Target.NormalizationStorageArray2D

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

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

Метод Описание
Close ( ) : void

Not needed for this storage type.

GetArray ( ) : double[][]

Get the underlying array.

NormalizationStorageArray2D ( double array ) : System

Construct an object to store to a 2D array.

Open ( ) : void

Not needed for this storage type.

Write ( double data, int inputCount ) : void

Write an array.

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

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

Not needed for this storage type.
public Close ( ) : void
Результат void

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

Get the underlying array.
public GetArray ( ) : double[][]
Результат double[][]

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

Construct an object to store to a 2D array.
public NormalizationStorageArray2D ( double array ) : System
array double The array to store to.
Результат System

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

Not needed for this storage type.
public Open ( ) : void
Результат void

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

Write an array.
public Write ( double data, int inputCount ) : void
data double The data to write.
inputCount int How much of the data is input.
Результат void