Ejemplo n.º 1
0
 public void T8Defuzzify()
 {
     LinguisticVariable =
         LinguisticVariable.fromJson(JsonLingVar);
     LinguisticVariable.RangeCalibration(1, 0.01);
     ExternalLVSetUp();
     LinguisticVariable.ApplyRule(LingVars);
     LinguisticVariable.Implicate(1);
     Debug.Log(
         "[Defuzzification Test Result]\n" +
         "Method : " + Defuzzification.nameOf(dfuzz) +
         " | Result : " + dfuzz.defuzzify(LinguisticVariable.linguisticRules));
 }
Ejemplo n.º 2
0
 public double Defuzzify(IDefuzzification DfuzzMethod)
 {
     return(DfuzzMethod.defuzzify(this.linguisticRules));
 }