C# Class AForge.Fuzzy.Database

The class represents a fuzzy database, a set of linguistic variables used in a Fuzzy Inference System.
Afficher le fichier Open project: holisticware-admin/MonoVersal.AForgeNET Class Usage Examples

Méthodes publiques

Méthode Description
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.

Method Details

AddVariable() public méthode

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.
Résultat void

ClearVariables() public méthode

Removes all the linguistic variables of the database.
public ClearVariables ( ) : void
Résultat void

Database() public méthode

Initializes a new instance of the Database class.
public Database ( ) : System
Résultat System

GetVariable() public méthode

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.
Résultat LinguisticVariable