fuzzy.tnorm {FuzzyR} | R Documentation |
Fuzzy tnorm
Description
To conduct t-norm operation for given fuzzy member functions
Usage
fuzzy.tnorm(operator, ...)
Arguments
operator |
The t-norm operator such as min, prod |
... |
fuzzy membership functions |
Value
A membership function, which is the t-norm of membership functions
Author(s)
Chao Chen
Examples
mf1 <- genmf(gbellmf, c(1,2,3))
mf2 <- genmf(gbellmf, c(4,5,6))
mf3 <- fuzzy.tnorm(prod, mf1, mf2)
tmp1 <- evalmf(1:10, mf1)
tmp2 <- evalmf(1:10, mf2)
tmp3 <- evalmf(1:10, mf3)
identical(tmp3, tmp1*tmp2)
tmp3
[Package FuzzyR version 2.3.2 Index]