Filter löschen
Filter löschen

How to put model from Fuzzy Logic Designer to App Designer ?

3 Ansichten (letzte 30 Tage)
Katarzyna Piotrowska
Katarzyna Piotrowska am 13 Jun. 2023
Beantwortet: Praveen Reddy am 26 Jun. 2023
I need to create an app where user can put his lingustic variables to 5/6 categories. After that user should be able to click some button and receive an answer from the system.
The answer should be calculated based on provided variables in model/file created in Fuzzy Logic Designer.

Antworten (1)

Praveen Reddy
Praveen Reddy am 26 Jun. 2023
Hi Katarzyna,
I understand that you have designed a system in Fuzzy Logic Designer App and implement the Fuzzy Inference System in App Designer with a button click event. You can use ‘uigetfile’ and ‘evalfis’ functions for the same.
  • Add a button to the App Designer Workspace
  • Add a button pushed function call back to the added button.
  • You can add the ‘uigetfile’ in the call back, collect the inputs from UI and pass the same to the fuzzy inference system fis using ‘evalfis’ as suggested below
[file,path] = uigetfile('*.fis'); %your .fis file
input1=app.Input1EditField.Value; % replace "IP1.EditField" with your field name
input2=app.Input2EditField.Value;
inputs=[input1,input2];
output=evalfis(fis,inputs);
app.OutputEditField.value=output;
Please refer to the following MATLAB documentations to know more about how to add call back function in App Designer, ‘evalfis’ function

Kategorien

Mehr zu Fuzzy Logic in Simulink finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by