Questions tagged [fuzzy-logic]

Fuzzy logic is logic handling uncertainty by using as truth values a real number between 0 and 1 to represent less or more certainty about a variable. Fuzzy operators similarly work with degrees of truth.

What is it?

Fuzzy logic is logic handling uncertainty by using as truth values a real number between 0 and 1 to represent less or more certainty about a variable. It is a form of many-valued logic. Fuzzy operators similarly work with degrees of truth.

How does it work?

Fuzzy logic deals with reasoning that is approximate rather than fixed and exact. In contrast with traditional logic theory, where binary sets have two-valued logic: true or false, fuzzy logic variables may have a truth value that ranges in degree between 0 and 1. Fuzzy logic has been extended to handle the concept of partial truth, where the truth value may range between completely true and completely false.

The reasoning in fuzzy logic is similar to human reasoning. It allows for approximate values and inferences as well as incomplete or ambiguous data (fuzzy data) as opposed to only relying on crisp data (binary yes/no choices). Fuzzy logic is able to process incomplete data and provide approximate solutions to problems other methods find difficult to solve.

In traditional logic, an answer is either black or white. Using fuzzy logic, the answer could be white, black or any variation of grey.

Related tags

Useful links

419 questions
0
votes
1 answer

how to fuzzify in fuzzyclips?

i want to write a project get a precise value for calorie to calculate the precise value of the then part(how much weight increased?).this is my rule: if calorie is high then increase weight for this i have this set for calorie: (highCalorie (20…
zara-T
  • 91
  • 11
0
votes
1 answer

Configuring inputs for a Multiple Input Fuzzy Controller in Labview?

I'm building a fuzzy controller in Labview using the MIMO (Multiple Input, Multiple Output) FL Fuzzy Controller.vi. I designed the fuzzy system using the Fuzzy System Designer, and the .fs file is connected as the "fuzzy system in" of the MIMO Fuzzy…
natmegs
  • 121
  • 2
  • 16
0
votes
1 answer

Weighted Decision Making on the basis of Two Significance Indexes

I'm trying to make the best decision for assignment of books (some of the books have multiple authors that belong to different organizations). Only one author can be represented by a single book. I have two variables that I'm calculating, namely the…
Composer
  • 245
  • 1
  • 4
  • 17
0
votes
1 answer

Algorithm used by Fuzzy Group

The company I work for purchased data cleansing and matching software to cleanse and match information every night. It takes about fifteen hours to run. I have discovered the Fuzzy Group/Fuzzy Lookup component in SSIS, which is extremely fast in my…
w0051977
  • 15,099
  • 32
  • 152
  • 329
0
votes
0 answers

Unable to implement Impulse MF in Fuzzy Logic Toolbox,

I'm trying to implement Impulse MF in Fuzzy Logic Toolbox in Matlab as shown in Fig.1 Link : http://s17.postimg.org/bbhkcibbj/fig_1.png But when am trying to implement in matlab am unable to do so. As shown in figure 2 Link to Fig 2. …
Nitish Katal
  • 33
  • 1
  • 3
  • 8
0
votes
1 answer

R:Fuzzy Logic Name match

I have been working on large data set which has names of customers , each of this has to be checked with the master file which has correct names (300 KB) and if matched append the master file name to names of customer file as new column value. My…
KRU
  • 291
  • 4
  • 18
0
votes
1 answer

Why do my fuzzy rules not fire?

I have created a fuzzy rulebase for a project.I am currently testing to see if the rules work. I am trying to explicitly test Rule 7 from the below given rules (though the fuzzy controller has all the rules written in them). RULE 7 : IF…
Kripa Jayakumar
  • 891
  • 9
  • 16
0
votes
0 answers

Classification with fuzzy logic

Is there any video, paper or example which explain steps of classification with fuzzy logic. I am trying to make something in matlab but I couldn't solve this problem.
0
votes
1 answer

In fuzzy logic, how can I add membership functions for different perspectives?

I am using jFuzzyLogic library for a FL project. I have created a FCL file that has three variables, service, room and food. FUZZIFY food TERM bad := (0, 1) (4, 0) ; TERM good := (1, 0) (4,1) (6,1) (9,0); TERM excellent := (6, 0) (9,…
Kripa Jayakumar
  • 891
  • 9
  • 16
0
votes
0 answers

How to optimize the parameters of trapezoidal membership function for an input data set using genetic programming?

I have a dataset of containing 4000 x 8 double values. I want to apply genetic programming to learn the optimal parameters (a,b,c,d) of the trapezoidal membership function (trapmf) of fuzzy logic toolbox of matlab, corresponding to each data…
0
votes
1 answer

Fuzzy logic - Computing membership function given term set

I am a student studying for a Fuzzy Logic exam, and I have been working my way through the questions about fuzzy sets. However I have just came across an exam question that I do not understand how to do from the lecturer's notes, and was wondering…
kevinh
  • 61
  • 7
0
votes
2 answers

fuzzy matching lots of strings

I've got a database with property owners; I would like to count the number of properties owned by each person, but am running into standard mismatch problems: REDEVELOPMENT AUTHORITY vs. REDEVELOPMENT AUTHORITY O vs. PHILADELPHIA REDEVELOPMEN vs.…
MichaelChirico
  • 33,841
  • 14
  • 113
  • 198
0
votes
2 answers

DataTables searching all columns apart from 1

I have set up a searchable table using dataTables and it works perfectly, accept one column isn't filtering in the search box. Here is my JSFiddle The column I am struggling with is the "Analog Channels" column, so for example if I type in "digital"…
JamesP
  • 67
  • 1
  • 6
0
votes
0 answers

R Fuzzy Membership function is not working correctly

I have a two dimensional dataset and I want to calculate a score for the degree of membership of a new datapoint to that dataset. For this purpose I thought of using the membership function used in fuzzy c means clustering, which is as…
TheBlueNotebook
  • 1,204
  • 3
  • 15
  • 35
0
votes
1 answer

How can these two questions optimized under the following mentioned constraints?

Recently I was given a question to Pick few numbers from these 34,32,43,46,36,21,28 such that their sum should nearest to 112 but should be less than that. Given few subsets A1,A2,A3...................An, find the optimal situation: Optimal…