newfis: Create a fis using newfis function

Description Usage Arguments Value Examples

View source: R/FuzzyInferenceSystem.R

Description

Creates a fis object.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
newfis(
  fisName,
  fisType = "mamdani",
  mfType = "t1",
  andMethod = "min",
  orMethod = "max",
  impMethod = "min",
  aggMethod = "max",
  defuzzMethod = "centroid"
)

Arguments

fisName

String representing the fis name.

fisType

Type of the fis, default is 'mamdani'.

mfType

Type of membership functions, 't1' or 'it2'

andMethod

The AND method for the fis, default is 'min'.

orMethod

The OR method for the fis, default is 'max'.

impMethod

The implication method for the fis, default is 'min'.

aggMethod

The aggregation method for the fis, default is 'max'.

defuzzMethod

The defuzzification method for the fis, default is 'centroid'.

Value

A new fis structure.

Examples

1
fis <- newfis("fisName")

Example output



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

Related to newfis in FuzzyR...