⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ch8_4.m

📁 这是书籍:Matlab控制系统与应用的源码,
💻 M
字号:

% Model Identification This is a demonstration of subtractive clustering and 
% how it can be used with multi-dimensional data. 
% Copyright 1994-2002 The MathWorks, Inc. $Revision: 1.12 $ 
% This is a plot of the input data for a model identification problem. 
% We are interested in estimating the number of auto trips generated
% from an area based on the area's demographics. Five factors were 
% considered: population, number of houses, vehicle ownership, income, and employment. 

tripdata
figure,plot(datin)


a=genfis2(datin,datout,0.45);
figure,plotfis(a);

figure
fuzout=evalfis(datin,a);
subplot(2,1,1)
plot(datin)
subplot(2,1,2)
plot([datout fuzout])


figure,plot(datout,fuzout,'bx',[0 10],[0 10],'r:')
xlabel('Actual Value')
ylabel('Predicted Value')
axis square


chkfuzout=evalfis(chkdatin,a);
figure,plot(chkdatout,chkfuzout,'bx',[0 10],[0 10],'r:')
axis square
xlabel('Actual Value')
ylabel('Predicted Value')


⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -