资源简介

这个是我看文献做的一个anfis(自适应神经网络模糊推理系统)的一个例子,已经表明注释,很容易上手

资源截图

代码片段和文件信息


% This code is an anfis algorithm example 

% struct the data
x = 0:0.01:10;
y = sin(2*x)./exp(x/5);

% Parameters 设计

% 训练数据
trnData = [x‘y‘];
% 5条隶属函数
numMFs = 5;
% 采用高斯型隶属函数,也可以选用其他种类的隶属度函数
mfType = ‘gaussmf‘;
% 训练的次数
epoch_n = 20;

in_fismat = genfis1(trnDatanumMFsmfType);
out_fismat = anfis(trnDatain_fismatepoch_n);
plot(xy‘o‘xevalfis(x‘out_fismat)‘k‘);
legend(‘Training Data‘‘ANFIS Output‘)




 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        481  2012-03-01 19:15  anfisExample_book.m

     文件    1574145  2012-03-01 09:43  ANFIS.pdf

----------- ---------  ---------- -----  ----

              1574626                    2


评论

共有 条评论