gbell.fuzzification {FuzzyR} | R Documentation |
To generate a fuzzy membership function based on generalised bell fuzzification for the given crisp input x
gbell.fuzzification(x, mf.params)
x |
the crisp input, which will be the parameter c for a generalised bell membership function |
mf.params |
the parameters c(a, b) or c(a, b, h) for a generalised bell membership function |
The gbell MF centred at the crisp point x
Chao Chen
mf <- gbell.fuzzification(3, c(1,2))
# This is the same as:
mf <- genmf('gbellmf', c(1,2,3))
evalmf(1:10, mf)