fuzzy.operator | index /fuzzy/operator/__init__.py @ |
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 | ||||||
|
Data | ||
__revision__ = '$Id: __init__.py,v 1.6 2009-10-27 20:06:27 rliebscher Exp $' |