Learn R Programming

FuzzyR (version 2.3.2)

x.fuzzification: Fuzzification

Description

To convert the crisp input x to a fuzzy membership function with specified fuzzification method

Usage

x.fuzzification(fuzzification.method, x, mf.params)

Arguments

fuzzification.method

The fuzzification method

x

The required parameters for a fuzzification method

mf.params

The parameters for a membership function

Value

The corresponding fuzzy membership function

Examples

Run this code
# NOT RUN {
x <- 3
mf <- x.fuzzification(gbell.fuzzification, x, c(1,2))
# This is the same as:
mf <- genmf(gbellmf, c(1,2,x))

evalmf(1:10, mf)
# }

Run the code above in your browser using DataLab