eFLL
eFLL copied to clipboard
eFLL (Embedded Fuzzy Logic Library) is a standard library for Embedded Systems
Hi AJ, **I'm using the Fuzzy.h code that you defined for a project, but my output is strange. Are you able to check my code?** #include // For scope, instantiate...
Hello AJ Alves.I want answer a question to you about your eFLL library.I have an stm microcontroller (STM32F429I DISCOVERY Board ) and i want do a project with fuzzy logic....
As you know Fuzzy logic translates Linguistic rules into logical rules that can include AND, OR, NOT operators. Although eFLL has `joinWithAND`, `joinSingle` and `joinWithOR`, I can't seem to find...
Add the method Mean of Maximum as a possible deffuzification stratege
I checked the result with Matlab and a Python library, which is the same (-1.22). But with this library, the result is -0.833557. The fuzzy output seems correct, but I...
`#include // For scope, instantiate all objects you will need to access in loop() // It may be just one Fuzzy, but for demonstration, this sample will print // all...
I wrote this code and everything seems fine unless the output value. It can be seen that the fired outputs and their values are correct but the output values seem...
FuzzyInput *weather = new FuzzyInput(1); weather->addFuzzySet(snow); weather->addFuzzySet(fog); weather->addFuzzySet(rain); weather->addFuzzySet(fine); fuzzy->addFuzzyInput(weather); I am getting an error: **'fuzzy' was not declared in this scope**