C# Class Encog.Util.Arrayutil.TemporalWindowArray

Produce a time-series from an array.
ファイルを表示 Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
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.

Method Details

Analyze() public method

Analyze the 1D array.
public Analyze ( double array ) : void
array double The array to analyze.
return void

CountInputFields() public method

Count the number of input fields, or fields used to predict.
public CountInputFields ( ) : int
return int

CountPredictFields() public method

Count the number of fields that are that are in the prediction.
public CountPredictFields ( ) : int
return int

Process() public method

Process the array.
public Process ( double data ) : IMLDataSet
data double The array to process.
return IMLDataSet

TemporalWindowArray() public method

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.
return System.Linq