fuzzy.tconorm {FuzzyR}R Documentation

Fuzzy t-conorm

Description

To conduct t-conorm operation for given fuzzy member functions

Usage

fuzzy.tconorm(operator, ...)

Arguments

operator

The t-conorm operator such as max

...

fuzzy membership functions

Value

A membership function, which is the t-conorm of membership functions

Author(s)

Chao Chen

Examples

mf1 <- genmf(gbellmf, c(1,2,3))
mf2 <- genmf(gbellmf, c(4,5,6))
mf3 <- fuzzy.tconorm(max, mf1, mf2)
tmp1 <- evalmf(1:10, mf1)
tmp2 <- evalmf(1:10, mf2)
tmp3 <- evalmf(1:10, mf3)
identical(tmp3, pmax(tmp1, tmp2))
tmp3

[Package FuzzyR version 2.3.2 Index]