- Drag and drop the button onto the designer workspace
- Right click the button, hover over 'callbacks', select 'AddButtonPushedFcn callback'
- Paste the following code inside the ButtonPushed function
How can I apply Fuzzy Inference System in MATLAB App Designer
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Li Mun Ng
am 31 Jul. 2019
Kommentiert: Imam Pratama Setiady
am 3 Feb. 2021
Good day to all.
I have designed a system using Fuzzy Logic Toolbox and now I want to implement the Fuzzy Inference System in the standalone application which I am going to develop using MATLAB App Designer.
The basic function of the application is to calculate the risk level of the disease using fuzzy logic. The user will be required to insert the inputs in numerical forms and the ouput will be the risk level. So there will be a button to allow the user to press in order to generate the output.
My question is how to link the .fis file in the button of the App Designer?
0 Kommentare
Akzeptierte Antwort
Subhadeep Koley
am 5 Aug. 2019
[file,path] = uigetfile('*.fis');
selectedfile = fullfile(path,file);
fuzzyLogicDesigner(selectedfile);
4. Save & Run the App.
0 Kommentare
Weitere Antworten (3)
Li Mun Ng
am 6 Aug. 2019
4 Kommentare
Subhadeep Koley
am 6 Aug. 2019
When I am executing the same code for the MATLAB in-built "tipper.fis" fis file it is giving me correct Output everytime.
function FuzzyButtonPushed(app, event)
fis = readfis('tipper');
i1=app.IP1EditField.Value;
i2=app.IP2EditField.Value;
inputs=[i1 i2];
output = evalfis(inputs,fis);
app.OPEditField.Value=output;
end
Therefore it is difficult to say which part went wrong without knowing what inputs your fis expect.
chiwapon nitnara
am 2 Mär. 2020
from this code i'm try to use this code to 2 output how to??? Thank you
1 Kommentar
Siehe auch
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!