Accord.Fuzzy.NotOperator.Evaluate C# (CSharp) Method

Evaluate() public method

Calculates the numerical result of the NOT operation applied to a fuzzy membership value.
public Evaluate ( float membership ) : float
membership float A fuzzy membership value, [0..1].
return float
        public float Evaluate( float membership )
        {
            return ( 1 - membership );
        }
    }
NotOperator