fuzzy.optimise {FuzzyR}R Documentation

Fuzzy optimisation

Description

to get an approximation of the maximum membership grade for a given membership function in the domain of [lower, upper]

Usage

fuzzy.optimise(fuzzy.mf, lower, upper)

Arguments

fuzzy.mf

fuzzy member function

lower

lower bound of the input

upper

upper bound of the input

Value

an approximation of the maximum membership grade in the given domain

Author(s)

Chao Chen

Examples

mf <- genmf(gbellmf, c(1,2,3))
x <- seq(4, 5, by=0.01)
max(evalmf(x, mf))
fuzzy.optimise(mf, 4, 5)

[Package FuzzyR version 2.3.2 Index]