- https://in.mathworks.com/help/fuzzy/building-fuzzy-inference-systems-using-custom-functions.html
- https://in.mathworks.com/help/fuzzy/anfis.html
How can I use custom membership functions in ANFIS?
12 次查看(过去 30 天)
显示 更早的评论
I am trying to use custom MFs in anfis, instead of the preset bellMF?
For example in the example provided, we have:
load fuzex1trnData.dat
fis = anfis(fuzex1trnData);
Now how do I use the FIS (customfis) with the custom MF that I created using FuzzyLogicDesigner?
Any help is appreciated.
0 个评论
回答(1 个)
Amritesh
2022-6-26
If you have already made FIS, then use fis = anfis(trainingData,options) and in options use that custom FIS.
If not then, first add custom membership function to a FIS like
myFIS = addMF(myFIS,"input1","custmf1",[0 1 2 4 6 8 9 10],'Name',"customMF1");
Documentation Links:
Hope this solves your problem.
2 个评论
Amritesh
2022-6-26
You can define an initial FIS structure using genfisOptions
genOpt = genfisOptions('GridPartition');
genOpt.NumMembershipFunctions = num;
genOpt.InputMembershipFunctionType = 'cumstomMF1'; % Here you use your custom MF
inFIS = genfis(x,y,genOpt);
You can use name of a custom membership function in the current working folder or on the MATLAB® path in InputMembershipFunctionType.
Have a look at https://in.mathworks.com/help/fuzzy/genfisoptions.html
And, then configure the ANFIS training options
opt = anfisOptions('InitialFIS',inFIS);
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Fuzzy Inference System Tuning 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!