ANFIS runing ptoblem ! Please help
1 次查看(过去 30 天)
显示 更早的评论
I trired to runing ANFIS for predicted data as in code , but gave this error :\
Error in anfis (line 67)
[varargout{1:nargout}] = anfisWithOptionObject(trn_data,varargin{1});
Error in test8 (line 8)
[fis1,error1,ss,fis2,error2] = anfis( [trnData chkData] ,options);
clear all;
trnData=xlsread('diffrentnorm.xlsx',1,'A1:A7000') ;
chkData=xlsread('diffrentnorm.xlsx',1,'C1:C7000') ;
fis = genfis(trnData,chkData, genfisOptions('GridPartition'));
options = anfisOptions('InitialFIS',fis,'ValidationData',chkData);
[fis1,error1,ss,fis2,error2] = anfis( [trnData , chkData] ,options);
0 个评论
回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Particle Swarm 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!