C# Класс AForge.Fuzzy.Database

The class represents a fuzzy database, a set of linguistic variables used in a Fuzzy Inference System.
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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