Questions tagged [jfuzzylogic]
21 questions
4
votes
1 answer
How to run JFuzzyLogic in Eclipse
I'm making a FuzzyLogic Air Conditioner for an assignment in college and I need to get it running in Java. I have added the JFuzzyLogic jar file to my eclipse project but everytime I run the code it just terminates straight away. Can somebody point…

Michelle
- 89
- 1
- 10
2
votes
0 answers
Fuzzy logic on Android application
I want to use the Fuzzy logic in my android application. I proceed with trying the jFuzzyLogic library (http://jfuzzylogic.sourceforge.net/html/index.html) and the example provided on eclipse.
In the execution of the example, I have confronted 2…

ha_ell
- 99
- 6
1
vote
0 answers
Can the fuzzy rules in a function block have as antecedents the outputs of another function block?
I want to implement a cascade of Fuzzy Inference Systems (FIS) in jFuzzyLogic. More specifically, I want to turn the output variables of a FIS into input of another. Could be the fuzzy rules in a function block have as antecedents the outputs of…

Θέμης Χρονόπουλος
- 11
- 2
1
vote
1 answer
What is the avilability defuzzification methods in JFuzzyLogic
I'm working on Fuzzy logic in Java for Android app and I'm using JFuzzy Logic open source library but I couldn't find any reference if we can use any other defuzzification methods except Center of Gravity (COG) method. Can anyone help me or just…

Samah Ahmed
- 419
- 8
- 24
1
vote
0 answers
Error returning jFuzzyLogic result as double value
I want to return the result of the fuzzy logic as a double to be used by another class.
I am using the following java code:
public class MyFuzzyClass {
public double getFuzzy() {
String fileName = "tipper.fcl"; //we have to add this file
…

java_researcher
- 11
- 3
1
vote
2 answers
Error loading fcl file in servlet
I have Java Web application JSP/Servlet that works with jFuzzyLogic library which uses rules.fcl file which is located at WEB-INF/rules/rules.fcl.
I m trying to load the rules.fcl file in a servlet file but when i try to execute the application web…

Anis Khadhri
- 177
- 1
- 2
- 12
1
vote
1 answer
How to increase the limitation of Jfuzzylogic "rules"?
iam searching a way around the limitation of fuzzy control language. In the documentation there is a limitation of 10 rules per rule set and 15 rules overall. I would like to increase the overall limit to for example 30 rules overall.
For example…

Ghali
- 275
- 3
- 15
1
vote
1 answer
how to create fcl project in eclipse
can any one tell me how to run the examples problems given in jfuzzylogic library using eclipse. I installed all needed plugin in eclipse and I download the jfuzzylogic jar file. I don't know how to proceed further. thanks in advance.

Saravanan
- 337
- 2
- 6
- 17
1
vote
1 answer
Fcl file can be supported by Android tablet?
I use jfuzzylogic application for my thesis project. When I tried to run jfuzzylogic application on Android platform, I was faced with a problem. After I run this code below, fcl file couldn't be loaded. I guess Android platform can't detect or…

Berker
- 81
- 5
0
votes
1 answer
How to import and use the FuzzyLogic library/package "JFML" in AnyLogic?
I'm quite new to AnyLogic, especially in importing external libraries/packages to it.
Does anyone know what else do I have to do when using/importing the fuzzy java library "JFML" in AnyLogic? I imported the JFML-v1.2.2.jar file in the Model…

DynamiX
- 63
- 4
0
votes
2 answers
JFuzzyLogic gives error in Eclipse IDE while code working well with another IDE
While the same code working in NetBeans IDE It gives this error on eclipse ! I'm getting this error after running the code and giving the input
Exception in thread "main" java.lang.NoClassDefFoundError:
net/sourceforge/jFuzzyLogic/FIS …

Nermin Kaya
- 1
- 3
0
votes
1 answer
How to read a .FIS file (MATHLAB) in Anylogic and perform FUZZY modeling using jFuzzyLogic.FIS?
Anylogic software allows the execution of .JAR classes. JFuzzyLogic is an open source library that implements Fuzzy logic. The desire is to use Anylogic by implementing Fuzzy logic in an easy way. Is the FuzzyLogic library the most suitable tool? Is…
0
votes
1 answer
Using java and jfuzzylogic library on Sugeno method
As far as I know, if I were to deffuzify a value using Mamdani method, I would write a FCL file this way:
TERM T1 := (0, 1) (1, 0);
TERM T2 := (1, 0) (2, 1) (2, 0);
TERM T3 := (4, 0) (5, 1) (5, 0);
TERM T4 := (6, 0) (7, 1) (7, …

Amaterastis
- 477
- 3
- 12
0
votes
2 answers
Java JFuzzyLogic sourceforge running demos
Has anyone successfully run the JFuzzyLogic demos? I downloaded the zip file, unzipped it. Was able to run the tip example but there are several others which did not run. Also the eclipse project seemed not to have net in the source folder which…

postscripting
- 1
- 2
0
votes
1 answer
jFuzzyLogic library in android studio does not work
i'm writing an android application that uses fuzzy inference for showing final result on one of my activities.
I use jFuzzyLogic library for this purpose , and first of all i want to only run famous tipper fuzzy problem in my app ,
but when i write…

Eldar
- 1
- 1