AForge.Fuzzy.InferenceSystem.InferenceSystem C# (CSharp) Метод

InferenceSystem() публичный Метод

Initializes a new Fuzzy InferenceSystem.
public InferenceSystem ( Database database, IDefuzzifier defuzzifier, INorm normOperator, ICoNorm conormOperator ) : System
database Database A fuzzy containing the system linguistic /// variables.
defuzzifier IDefuzzifier A defuzzyfier method used to evaluate the numeric otput /// of the system.
normOperator INorm A operator used to evaluate the norms /// in the . For more information of the norm evaluation see .
conormOperator ICoNorm A operator used to evaluate the /// conorms in the . For more information of the conorm evaluation see .
Результат System
        public InferenceSystem( Database database, IDefuzzifier defuzzifier, INorm normOperator, ICoNorm conormOperator )
        {
            this.database = database;
            this.defuzzifier = defuzzifier;
            this.normOperator = normOperator;
            this.conormOperator = conormOperator;
            this.rulebase = new Rulebase( );
        }

Same methods

InferenceSystem::InferenceSystem ( Database database, IDefuzzifier defuzzifier ) : System