Click or drag to resize
Accord.NET (logo)

InferenceSystem Constructor (Database, IDefuzzifier, INorm, ICoNorm)

Initializes a new Fuzzy InferenceSystem.

Namespace:  Accord.Fuzzy
Assembly:  Accord.Fuzzy (in Accord.Fuzzy.dll) Version: 3.8.0
Syntax
public InferenceSystem(
	Database database,
	IDefuzzifier defuzzifier,
	INorm normOperator,
	ICoNorm conormOperator
)
Request Example View Source

Parameters

database
Type: Accord.FuzzyDatabase
A fuzzy Database containing the system linguistic variables.
defuzzifier
Type: Accord.FuzzyIDefuzzifier
A defuzzyfier method used to evaluate the numeric otput of the system.
normOperator
Type: Accord.FuzzyINorm
A INorm operator used to evaluate the norms in the InferenceSystem. For more information of the norm evaluation see Rule.
conormOperator
Type: Accord.FuzzyICoNorm
A ICoNorm operator used to evaluate the conorms in the InferenceSystem. For more information of the conorm evaluation see Rule.
See Also