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

3 次查看(过去 30 天)
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.

回答(1 个)

Praveen Reddy
Praveen Reddy 2023-6-26
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

类别

Help CenterFile Exchange 中查找有关 Fuzzy Inference System Modeling 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by