newfis {FuzzyR} | R Documentation |
Create a fis using newfis function
Description
Creates a fis object.
Usage
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
fis <- newfis("fisName")
[Package FuzzyR version 2.3.2 Index]