Package fuzzy :: Package operator
[hide private]
[frames] | no frames]

Package operator

source code

These operators are used to build fuzzy rules.

For example:

c{(A and B) or not C}

where

can be modelled as:

Compound(FuzzyOr(),
    Compound(FuzzyAnd(),
        Input(A),
        Input(B)
    ),
    Not(
        Input(C)
    )
)
Submodules [hide private]

Variables [hide private]
  __revision__ = '$Id: __init__.py,v 1.6 2009-10-27 20:06:27 rli...
  __package__ = None
Variables Details [hide private]

__revision__

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