2012-07-02 69 views
0

我正在使用ANFIS進行工作,並且使用MATLAB學習了使用ANFIS。但是,我在圖表中獲得了我的最終FIS輸出。我無法以數組形式獲得輸出。如何在MATLAB中生成ANFIS輸出?

你能幫我解釋如何以數組形式獲得最終輸出嗎?

回答

1

http://www.mathworks.com/help/toolbox/fuzzy/fp715dup12.html#FP43334

The command anfis takes at least two and at most six input arguments. The general format is 

[fismat1,trnError,ss,fismat2,chkError] = ... 
anfis(trnData,fismat,trnOpt,dispOpt,chkData,method); 

where trnOpt (training options), dispOpt (display options), chkData (checking data), and method (training method), are optional. 

然後你就可以例如繪製輸出:

figure(3) 
subplot(2,2,1) 
plotmf(fismat2, 'input', 1) 
subplot(2,2,2) 
plotmf(fismat2, 'input', 2) 
subplot(2,2,3) 
plotmf(fismat2, 'input', 3) 
subplot(2,2,4) 
plotmf(fismat2, 'input', 4) 

下圖顯示的結果的一個例子:

enter image description here