How to set input for fuzzy logic controller block

17 views (last 30 days)
Hi, I have set up my Fuzzy logic in the FIS editor already. My model has 2 input. I want to analyse the data from excel which has 2 column(for 2 input) by the fuzzy logic I created. 1.Can anyone tell me how to set up the model in Simulink to solve this problem? 2.What is the type of the input/output block I should use if I want the output to be in the excel as well? 3.The fuzzy logic controller in simulink has just one way for input. How can I add one more?
Thank you for the answers.
  1 Comment
Johnny
Johnny on 20 Dec 2016
Hello, could you explain on how you managed to simulate a set of data one by one? I did time-stamp my data from workspace but the from workspace block still inflates all the data to the fuzzy controller.

Sign in to comment.

Accepted Answer

Arkadiy Turevskiy
Arkadiy Turevskiy on 16 Oct 2014
Edited: Arkadiy Turevskiy on 16 Oct 2014
You can read the data from Excel into MATLAB using xlsread command. Once you run the data through your fuzzy system you can write results to Excel using xlswrite command.
If all you are doing is running the input data through a fuzzy inference system, you do not need to do this in Simulink. You can do it using the function evalfis .
If you really need to do this in Simulink, just use Fuzzy Logic Controller block.
See this example for how to set it up with 2 inputs.
The data you import from xls file will be a matrix in your workspace, you can use it in Simulink by using From Workspace block.
  2 Comments
Johnny
Johnny on 20 Dec 2016
Hello, Could you be a little more clear on this. As the from workspace block seems to inflate all the values at once in my case. I time-stamped the vector from the workspace, but still there is a problem.

Sign in to comment.

More Answers (0)

Categories

Find more on Fuzzy Logic in Simulink in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!