C# Class Encog.Util.Arrayutil.TemporalWindowArray

Produce a time-series from an array.
Afficher le fichier Open project: encog/encog-silverlight-core Class Usage Examples

Méthodes publiques

Méthode 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 méthode

Analyze the 1D array.
public Analyze ( double array ) : void
array double The array to analyze.
Résultat void

CountInputFields() public méthode

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

CountPredictFields() public méthode

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

Process() public méthode

Process the array.
public Process ( double data ) : IMLDataSet
data double The array to process.
Résultat IMLDataSet

TemporalWindowArray() public méthode

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.
Résultat System.Linq