Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

A concrete example of fuzzy logic

I remember reading a book about fuzzy logic and how it was being used in devices like washing machines. I haven't yet encountered a concrete example of this in code though. Do you know of any?

like image 380
James P. Avatar asked Feb 01 '11 15:02

James P.


People also ask

What is an example of fuzzy logic?

In more simple words, A Fuzzy logic stat can be 0, 1 or in between these numbers i.e. 0.17 or 0.54. For example, In Boolean, we may say glass of hot water ( i.e 1 or High) or glass of cold water i.e. (0 or low), but in Fuzzy logic, We may say glass of warm water (neither hot nor cold).

What is a real life example of fuzzy?

Fuzzy logic has been used in numerous applications such as facial pattern recognition, air conditioners, washing machines, vacuum cleaners, antiskid braking systems, transmission systems, control of subway systems and unmanned helicopters, knowledge-based systems for multiobjective optimization of power systems, ...

What is fuzzy logic with example in artificial intelligence?

Fuzzy Logic (FL) is a method of reasoning that resembles human reasoning. This approach is similar to how humans perform decision making. And it involves all intermediate possibilities between YES and NO. The Fuzzy logic works on the levels of possibilities of input to achieve a definite output.

What is fuzzy logic in simple words?

Fuzzy logic is an approach to computing based on "degrees of truth" rather than the usual "true or false" (1 or 0) Boolean logic on which the modern computer is based. The idea of fuzzy logic was first advanced by Lotfi Zadeh of the University of California at Berkeley in the 1960s.


1 Answers

I recommend "The Fuzzy Systems Handbook", by Earl Cox. Though I have not used the included source code, the book explains both the application of fuzzy logic and the programming mechanics behind it. Several examples are presented which are from real world solutions.

like image 83
Predictor Avatar answered Oct 12 '22 19:10

Predictor