evalfis {FuzzyR} | R Documentation |
Evaluate a Fuzzy Inference System (fis)
Description
Returns an evaluated crisp value for a given fis structure.
Usage
evalfis(input_stack, fis, time = 1, point_n = 101, draw = FALSE)
Arguments
input_stack |
A matrix representing the input stack, number of inputs (columns) by number of outputs (rows). |
fis |
A fis must be provided. |
time |
default 1 |
point_n |
number of discretised points, default 101 |
draw |
whether to draw, TRUE or FALSE |
Value
Returns a matrix of evaluated values.
Examples
Input_data <- matrix((1:2),1,2)
fis <- tipper()
evalfis(Input_data, fis)
[Package FuzzyR version 2.3.2 Index]