예제 #1
0
 public bool Equals(FuzzySet other, double x)
 {
     return(Membership(x).Equals(other.Membership(x)));
 }
예제 #2
0
 public double Intersection(FuzzySet other, double x)
 {
     return(Math.Min(Membership(x), other.Membership(x)));
 }
예제 #3
0
 public double SNorm(FuzzySet other, double x, double y)
 {
     return(Math.Max(Membership(x), other.Membership(y)));
 }
예제 #4
0
 public double Union(FuzzySet other, double x)
 {
     return(Math.Max(Membership(x), other.Membership(x)));
 }