fuzzy.firing {FuzzyR}R Documentation

Fuzzy rule firing

Description

To get the firing strength for the given input fuzzification membership function and the antecedent membership function in the domain of [lower, upper]

Usage

fuzzy.firing(operator, x.mf, ante.mf, lower, upper)

Arguments

operator

t-norm operator

x.mf

the fuzzy input membership function

ante.mf

the antecedent membership function

lower

lower bound of the input

upper

upper bound of the input

Value

the rule firing strenth

Author(s)

Chao Chen

Examples

x.mf <- x.fuzzification(gbell.fuzzification, 3, c(1,2))
ante.mf <- genmf(gbellmf, c(1,2,6))
firing.strength <- fuzzy.firing(min, x.mf, ante.mf, lower=0, upper=10)
firing.strength

[Package FuzzyR version 2.3.2 Index]