C# Класс Encog.Util.Arrayutil.TemporalWindowArray

Produce a time-series from an array.
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
Analyze ( double array ) : void

Analyze the 1D array.

CountInputFields ( ) : int

Count the number of input fields, or fields used to predict.

CountPredictFields ( ) : int

Count the number of fields that are that are in the prediction.

Process ( double data ) : IMLDataSet

Process the array.

TemporalWindowArray ( int theInputWindow, int thePredictWindow ) : System.Linq

Construct a time-series from an array.

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

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

Analyze the 1D array.
public Analyze ( double array ) : void
array double The array to analyze.
Результат void

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

Count the number of input fields, or fields used to predict.
public CountInputFields ( ) : int
Результат int

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

Count the number of fields that are that are in the prediction.
public CountPredictFields ( ) : int
Результат int

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

Process the array.
public Process ( double data ) : IMLDataSet
data double The array to process.
Результат IMLDataSet

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

Construct a time-series from an array.
public TemporalWindowArray ( int theInputWindow, int thePredictWindow ) : System.Linq
theInputWindow int The size of the input window.
thePredictWindow int The size of the predict window.
Результат System.Linq