C# 클래스 Accord.Fuzzy.Database

The class represents a fuzzy database, a set of linguistic variables used in a Fuzzy Inference System.
파일 보기 프로젝트 열기: accord-net/framework 1 사용 예제들

공개 메소드들

메소드 설명
AddVariable ( LinguisticVariable variable ) : void

Adds a linguistic variable to the database.

ClearVariables ( ) : void

Removes all the linguistic variables of the database.

Database ( ) : System

Initializes a new instance of the Database class.

GetVariable ( string variableName ) : LinguisticVariable

Returns an existing linguistic variable from the database.

메소드 상세

AddVariable() 공개 메소드

Adds a linguistic variable to the database.
The linguistic variable was not initialized. The linguistic variable name already exists in the database.
public AddVariable ( LinguisticVariable variable ) : void
variable LinguisticVariable A linguistic variable to add.
리턴 void

ClearVariables() 공개 메소드

Removes all the linguistic variables of the database.
public ClearVariables ( ) : void
리턴 void

Database() 공개 메소드

Initializes a new instance of the Database class.
public Database ( ) : System
리턴 System

GetVariable() 공개 메소드

Returns an existing linguistic variable from the database.
The variable indicated was not found in the database.
public GetVariable ( string variableName ) : LinguisticVariable
variableName string Name of the linguistic variable to retrieve.
리턴 LinguisticVariable