Accord.Fuzzy.FuzzySet.FuzzySet C# (CSharp) Method

FuzzySet() public method

Initializes a new instance of the FuzzySet class.
public FuzzySet ( string name, IMembershipFunction function ) : System
name string Name of the fuzzy set.
function IMembershipFunction Membership function that will define the shape of the fuzzy set.
return System
        public FuzzySet( string name, IMembershipFunction function )
        {
            this.name     = name;
            this.function = function;
        }