C# 클래스 Encog.Util.Arrayutil.TemporalWindowArray

Produce a time-series from an array.
파일 보기 프로젝트 열기: encog/encog-silverlight-core 1 사용 예제들

공개 메소드들

메소드 설명
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