How to save Type 2 Fuzzy system?

5 views (last 30 days)
In the example Fuzzy PID Control with Type-2 FIS, there is nothing that explain how to save the converted fuzzy type 1 system (the fis2). I tried to do the example but I could not manage to find the fis2. Am I missing something?

Accepted Answer

Subhadeep Koley
Subhadeep Koley on 6 Jul 2020
HI,
After you convert fis1 to fis2, use the code below to save the fis2 system. The below code opens a dialog box for saving the FIS. In this dialog box, specify the desired name and location of the .fis file.
writeFIS(fis2)
Again, to load the saved fis2 use the code below
fis2 = readfis(fileName) % Enter the filename of your fis file
  1 Comment
wiam Ayrir
wiam Ayrir on 9 Jul 2020
Thank you so much for your answer, actually I used this code but didn't work, but after your answer I was sure it is the right code so I figured out that I was saving the initital code file to .m file and not .mlx.
Thank you again ^^

Sign in to comment.

More Answers (0)

Categories

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

Products


Release

R2020a

Community Treasure Hunt

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

Start Hunting!