Learn R Programming

FuzzyToolkitUoN (version 1.0)

evalFIS: Evaluate a Fuzzy Inference System.

Description

Returns an evaluated crisp value for a given FIS structure.

Usage

evalFIS(inputStack, fis, numPoints = 101)

Arguments

inputStack
A matrix representing the input stack, number of inputs (columns) by number of outputs (rows).
fis
A FIS must be provided.
numPoints
An optional argument that represents the number of sample points on which to evaluate the membership functions.

Value

    Examples

    Run this code
    MyMatrix <<- matrix((1:2),1,2)
    FIS <<- tippertest()
    evalFIS(MyMatrix, FIS)
    evalFIS(MyMatrix, FIS, 50)

    Run the code above in your browser using DataLab