C# 클래스 Encog.ML.Data.Specific.BiPolarMLData

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

공개 메소드들

메소드 설명
BiPolarMLData ( bool d ) : System

Construct this object with the specified data.

BiPolarMLData ( int size ) : System

Construct a data object with the specified size.

Clear ( ) : void

Clear to false.

Clone ( ) : object

Clone this object.

GetBoolean ( int i ) : bool

Get the specified data item as a boolean.

SetBoolean ( int index, bool b ) : void

Set the value as a boolean.

ToString ( ) : String
this ( int x ) : double

Allowes indexed access to the data.

메소드 상세

BiPolarMLData() 공개 메소드

Construct this object with the specified data.
public BiPolarMLData ( bool d ) : System
d bool The data to create this object with.
리턴 System

BiPolarMLData() 공개 메소드

Construct a data object with the specified size.
public BiPolarMLData ( int size ) : System
size int The size of this data object.
리턴 System

Clear() 공개 메소드

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

Clone() 공개 메소드

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

GetBoolean() 공개 메소드

Get the specified data item as a boolean.
public GetBoolean ( int i ) : bool
i int
리턴 bool

SetBoolean() 공개 메소드

Set the value as a boolean.
public SetBoolean ( int index, bool b ) : void
index int The index.
b bool The boolean value.
리턴 void

ToString() 공개 메소드

public ToString ( ) : String
리턴 String

this() 공개 메소드

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