Evaluate fuzzy logic system
y=evalfls(x,fls,[npev])
matrix of real. Input points.
fls structure to evaluate
scalar or vector, number of points to evaluate during defuzzification algorithm (mamdani)
evalfls
evaluate the fuzzy logic system fls
in points x
and return values in y
. The
x
parameters have dimension [npairs_of_inputs,
number_of_inputs]
, the output y
have dimension
[npairs_of_inputs, number_of_outputs]
.
The npev
parameter is optional in Mamdani case, the user
can set the number of partitions of the output variable domain to evaluate
the member functions for each output. This parameter can be a scalar (all
outputs are evaluated with the same number of partitions) or vector (each
element set the number of partitions for each output).The default value
for all outputs is 1001 points.