This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

sample code for fuzzy system control

Hi, I am looking for some sample codes for fuzzy system control. Anyone can give some help?
Thanks a lot ^_^

Parents
  • "I am looking for some sample codes for fuzzy system control"

    No problem. Use a switch statement:

    bit logic;

    ...

    switch(logic)
    {
    case 0:
    //Normal zero state code here
    break;

    case 1:
    //Normal one state code here
    break;

    default:
    //Fuzzy state code here
    break;
    }

Reply
  • "I am looking for some sample codes for fuzzy system control"

    No problem. Use a switch statement:

    bit logic;

    ...

    switch(logic)
    {
    case 0:
    //Normal zero state code here
    break;

    case 1:
    //Normal one state code here
    break;

    default:
    //Fuzzy state code here
    break;
    }

Children
No data