diff --git a/qfis_desc.html b/qfis_desc.html index aaade18..39bee93 100644 --- a/qfis_desc.html +++ b/qfis_desc.html @@ -284,7 +284,7 @@
Let's apply some of these statements to build the rule set.
-If we already have a fuzzy system configured with qlibs::fis::instance::setup(), we can evaluate it by using qlibs::fis::instance::fuzzify(), qlibs::fis::instance::inference() and qlibs::fis::instance::deFuzzify(). Input values can be set with qlibs::fis::instance::setInput() and output values can be obtained with qlibs::fis::instance::getOutput(). Also you can use the stream operator <<
to set the inputs and the index operator [] to get the outputs of the FIS system (see example bellow).
To show its use, first we are going to put everything together in a single code snippet and we are going to create two functions, tipper_init()
and tipper_run()
that will be in charge of setting up the fuzzy inference system and evaluating it respectively.