fuzzy.operator.Not
index
/fuzzy/operator/Not.py @ Get pyfuzzy at SourceForge.net. Fast, secure and Free Open Source software downloads

Operator class which takes value of input operator and calculates complement of it.

 
Classes
       
fuzzy.operator.Operator.Operator(__builtin__.object)
Not

 
class Not(fuzzy.operator.Operator.Operator)
    Take value of input operator and calculate complement of it.
 
@ivar input: input which result is to complement.
@type input: L{fuzzy.operator.Operator.Operator}
 
 
Method resolution order:
Not
fuzzy.operator.Operator.Operator
__builtin__.object

Methods defined here:
__call__(self)
Get input value and return 1.0-value.
__init__(self, input)
Constructor.
 
@param input: input which result is to complement.
@type input: L{fuzzy.operator.Operator.Operator}
__repr__(self)
Return representation of instance.
        
@return: representation of instance
@rtype: string

Data descriptors inherited from fuzzy.operator.Operator.Operator:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
Data
        __revision__ = '$Id: Not.py,v 1.18 2013-01-09 20:10:19 rliebscher Exp $'