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

Base class for all fuzzy sets.

 
Classes
       
__builtin__.object
Set

 
class Set(__builtin__.object)
    Base class for all types of fuzzy sets.
 
  Methods defined here:
__call__(self, x)
Return membership of x in this fuzzy set.
This method makes the set work like a function.
 
@param x: value x
@type x: float
@return: membership for value x
@rtype: float
__repr__(self)
Return representation of instance.
        
@return: representation of instance
@rtype: string
getCOG(self)
Returns center of gravity.
 
@return: x-value of center of gravity
@rtype: float
getValuesX(self)
Internal helper function to help convert arbitrary fuzzy sets in 
fuzzy sets represented by a polygon.
getValuesXY(self, flat=True)
Internal helper function to help convert arbitrary fuzzy sets in 
fuzzy sets represented by a polygon.

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

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