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

Abstract base class for any parametric fuzzy complement

 
Classes
       
fuzzy.complement.Base.Base(__builtin__.object)
Parametric

 
class Parametric(fuzzy.complement.Base.Base)
    Abstract base class for any parametric fuzzy complement
 
@ivar p: parameter for complement
@type p: float
 
 
Method resolution order:
Parametric
fuzzy.complement.Base.Base
__builtin__.object

Methods defined here:
__init__(self, p, *args, **keywords)
Initialize type and parameter
 
@param p: parameter for complement
@type p: float
__repr__(self)
Return representation of instance.
        
@return: representation of instance
@rtype: string

Data descriptors defined here:
p
x
@type: float
p_range
range(s) of valid values for p

Methods inherited from fuzzy.complement.Base.Base:
__call__(self, value)
Calculate the complement of the value.
@param value: the value to complement
@type value: float
@return: the complemented value
@rtype: float

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

 
Data
        __revision__ = '$Id: Parametric.py,v 1.9 2010-10-29 19:24:41 rliebscher Exp $'