fuzzy.firing: Fuzzy rule firing

Description Usage Arguments Value Author(s) Examples

View source: R/FuzzyOperation.R

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

1
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

1
2
3
4
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

Example output

[1] 0.1649484

FuzzyR documentation built on May 19, 2021, 9:06 a.m.

Related to fuzzy.firing in FuzzyR...