C# 클래스 Encog.ML.Data.Basic.BasicMLData

상속: IMLData
파일 보기 프로젝트 열기: encog/encog-silverlight-core 1 사용 예제들

공개 메소드들

메소드 설명
BasicMLData ( double d ) : System

Construct this object with the specified data.

BasicMLData ( int size ) : System

Construct this object with blank data and a specified size.

Clear ( ) : void

Clear to zero.

Clone ( ) : object

Clone this object.

ToString ( ) : string

Convert the object to a string.

this ( int x ) : double

Access the data by index.

메소드 상세

BasicMLData() 공개 메소드

Construct this object with the specified data.
public BasicMLData ( double d ) : System
d double The data to construct this object with.
리턴 System

BasicMLData() 공개 메소드

Construct this object with blank data and a specified size.
public BasicMLData ( int size ) : System
size int The amount of data to store.
리턴 System

Clear() 공개 메소드

Clear to zero.
public Clear ( ) : void
리턴 void

Clone() 공개 메소드

Clone this object.
public Clone ( ) : object
리턴 object

ToString() 공개 메소드

Convert the object to a string.
public ToString ( ) : string
리턴 string

this() 공개 메소드

Access the data by index.
public this ( int x ) : double
x int The index to access.
리턴 double