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

상속: IMLComplexData
파일 보기 프로젝트 열기: encog/encog-silverlight-core

공개 메소드들

메소드 설명
BasicMLComplexData ( ComplexNumber d ) : System

Construct this object with the specified data. Use complex numbers.

BasicMLComplexData ( IMLData d ) : System

Construct a new BasicMLData object from an existing one. This makes a copy of an array. If MLData is not complex, then only reals will be created.

BasicMLComplexData ( double d ) : System

Construct this object with the specified data. Use only real numbers.

BasicMLComplexData ( int size ) : System

Construct this object with blank data and a specified size.

Clear ( ) : void

Clear all values to zero.

Clone ( ) : Object
GetComplexData ( int index ) : ComplexNumber
SetComplexData ( ComplexNumber d ) : void

Set the complex data array.

SetComplexData ( int index, ComplexNumber d ) : void

Set a data element to a complex number.

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

Access the data by index.

메소드 상세

BasicMLComplexData() 공개 메소드

Construct this object with the specified data. Use complex numbers.
public BasicMLComplexData ( ComplexNumber d ) : System
d Encog.MathUtil.ComplexNumber The data to construct this object with.
리턴 System

BasicMLComplexData() 공개 메소드

Construct a new BasicMLData object from an existing one. This makes a copy of an array. If MLData is not complex, then only reals will be created.
public BasicMLComplexData ( IMLData d ) : System
d IMLData The object to be copied.
리턴 System

BasicMLComplexData() 공개 메소드

Construct this object with the specified data. Use only real numbers.
public BasicMLComplexData ( double d ) : System
d double The data to construct this object with.
리턴 System

BasicMLComplexData() 공개 메소드

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

Clear() 공개 메소드

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

Clone() 공개 메소드

public Clone ( ) : Object
리턴 Object

GetComplexData() 공개 메소드

public GetComplexData ( int index ) : ComplexNumber
index int
리턴 Encog.MathUtil.ComplexNumber

SetComplexData() 공개 메소드

Set the complex data array.
public SetComplexData ( ComplexNumber d ) : void
d Encog.MathUtil.ComplexNumber A new complex data array.
리턴 void

SetComplexData() 공개 메소드

Set a data element to a complex number.
public SetComplexData ( int index, ComplexNumber d ) : void
index int The index to set.
d Encog.MathUtil.ComplexNumber The complex number.
리턴 void

ToString() 공개 메소드

public ToString ( ) : String
리턴 String

this() 공개 메소드

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