tnorm_minimum {agop} | R Documentation |
t-norms
Description
Various t-norms. Each of these is a fuzzy logic generalization of the classical conjunction operation.
Usage
tnorm_minimum(x, y)
tnorm_product(x, y)
tnorm_lukasiewicz(x, y)
tnorm_drastic(x, y)
tnorm_fodor(x, y)
Arguments
x |
numeric vector with elements in |
y |
numeric vector of the same length as |
Details
A function
is a t-norm if for all
it holds:
(a)
;
(b) if
, then
;
(c)
;
(d)
.
The minimum t-norm is given by .
The product t-norm is given by .
The Lukasiewicz t-norm is given by .
The drastic t-norm is given by iff
, and
otherwise.
The Fodor t-norm is given by
iff
, and
otherwise.
Value
Numeric vector of the same length as x
and y
.
The i
th element of the resulting vector gives the result
of calculating T(x[i], y[i])
.
References
Klir G.J, Yuan B., Fuzzy sets and fuzzy logic. Theory and applications, Prentice Hall PTR, New Jersey, 1995.
Gagolewski M., Data Fusion: Theory, Methods, and Applications, Institute of Computer Science, Polish Academy of Sciences, 2015, 290 pp. isbn:978-83-63159-20-7
See Also
Other fuzzy_logic:
fimplication_minimal()
,
fnegation_yager()
,
tconorm_minimum()