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

Rule() public method

Initializes a new instance of the Rule class using as CoNorm the MaximumCoNorm and as Norm the MinimumNorm.
public Rule ( Database fuzzyDatabase, string name, string rule ) : System
fuzzyDatabase Database A fuzzy containig the linguistic variables /// (see ) that will be used in the .
name string Name of this .
rule string A string representing the . It must be a "IF..THEN" /// statement. For a more detailed description see class.
return System
        public Rule( Database fuzzyDatabase, string name, string rule ) :
            this( fuzzyDatabase, name, rule, new MinimumNorm( ), new MaximumCoNorm( ) )
        {
        }

Same methods

Rule::Rule ( Database fuzzyDatabase, string name, string rule, INorm normOperator, ICoNorm coNormOperator ) : System