Click or drag to resize
Accord.NET (logo)

IMembershipFunction Interface

Interface which specifies set of methods required to be implemented by all membership functions.

Namespace:  Accord.Fuzzy
Assembly:  Accord.Fuzzy (in Accord.Fuzzy.dll) Version: 3.8.0
Syntax
public interface IMembershipFunction
Request Example View Source

The IMembershipFunction type exposes the following members.

Properties
  NameDescription
Public propertyLeftLimit
The leftmost x value of the membership function.
Public propertyRightLimit
The rightmost x value of the membership function.
Top
Methods
  NameDescription
Public methodGetMembership
Calculate membership of a given value to the fuzzy set.
Top
Remarks

All membership functions must implement this interface, which is used by FuzzySet class to calculate value's membership to a particular fuzzy set.

See Also