Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I should implement a fuzzy function through php. the problem it is I haven't any idea how create it and I looked for in the web and I didn't found anything.Now I would your help to say me how I could create a typos of php fuzzy function. Every function could go well.It will be to understand for me the general model and make me an idea in how I create fuzzy function to myself.

share|improve this question
What? ......... – Cjueden Feb 14 '12 at 18:09

1 Answer

up vote 0 down vote accepted

Depends on what do you call a fuzzy functions, but Basically fuzzy logic translates into a set of IF conditions of this kind:

Let's suppose we want to write fuzzy logic rules for a video game monster. We decide to start with two variables: hit points (HP) and firepower (FP). We might start with this:

HP/FP   Very low HP     Low HP  Medium HP   High HP     Very high HP
Very weak FP    Retreat!    Retreat!    Defend  Defend  Attack
Weak FP     Retreat!    Defend  Defend  Attack  Attack
Medium FP   Retreat!    Defend  Attack  Attack  Full attack!
High FP     Retreat!    Defend  Attack  Attack  Full attack!
Very high FP    Defend  Attack  Attack  Full attack!    Full attack!
function fuzzy ($hp, $firepower)
{
    if($hp == 'very low hp' && $firepower == 'very weak fp' ) return 'retreat';
    if($hp == 'low hp' && $firepower == 'very weak fp' ) return 'retreat';    
    if($hp == 'high hp' && $firepower == 'very weak fp' ) return 'defend';
...
    if($hp == 'high hp' && $firepower == 'very high fp' ) return 'full attack';
    if($hp == 'very high hp' && $firepower == 'very high fp' ) return 'full attack';
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.