AForge.Fuzzy.ProductNorm.Evaluate C# (CSharp) Method

Evaluate() public method

Calculates the numerical result of the AND operation applied to two fuzzy membership values using the product rule.
public Evaluate ( float membershipA, float membershipB ) : float
membershipA float A fuzzy membership value, [0..1].
membershipB float A fuzzy membership value, [0..1].
return float
        public float Evaluate( float membershipA, float membershipB )
        {
            return membershipA * membershipB;
        }
    }
ProductNorm