Accord.Fuzzy.FuzzySet.FuzzySet C# (CSharp) 메소드

FuzzySet() 공개 메소드

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.
리턴 System
        public FuzzySet( string name, IMembershipFunction function )
        {
            this.name     = name;
            this.function = function;
        }