you can get it at h**p://www.ece.osu.edu/~passino/books.html 8)tcsa35 said:Please can you share some books about fuzzy logic.
Always try to look a word up at www.answers.com before asking the meaning:engineer said:sorry,
but what's this fuzzy logic?
why it's called fuzzy
I only know Logic
please don't be angry with me as I'm still studying electrical engineering
thanks in advance
#define MINIMUN_STEP_FOR_FLOAT_VALUE 0.00000001f
degree=0
limit = 1.80
while(height != limit){
if( height >= limit){
degree++;
height -= MINIMUN_STEP_FOR_FLOAT_VALUE;
}else{
degree--;
height += MINIMUN_STEP_FOR_FLOAT_VALUE;
}
}
Hi Daneshgar,Daneshgar said:I am working whit Fuzzy Logic and VHDL coke for Fuzzy Processor.
This PDF is good for start in Fozzy Logic.