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

These operators are used to build fuzzy rules.
 
For example:
 
c{(A and B) or not C}
 
where
 
 - A,B,C is an adjective of a fuzzy variable and
 - 'and'/'or' are fuzzy norms
 
can be modelled as::
 
 Compound(FuzzyOr(),
     Compound(FuzzyAnd(),
         Input(A),
         Input(B)
     ),
     Not(
         Input(C)
     )
 )

 
Package Contents
       
Compound
Const
Input
Not
Operator

 
Data
        __revision__ = '$Id: __init__.py,v 1.6 2009-10-27 20:06:27 rliebscher Exp $'