标签: matlab fuzzy-logic
使用evalfis时“警告:某些输入值超出指定的输入范围。”“
out_fis = anfis([1,1,1;2,2,2]) action = evalfis([3,3] , out_fis); Warning: Some input values are outside of the specified input range
指定的输入范围是什么?
答案 0 :(得分:3)
您提供给ANFIS的数据是您用于创建FIS结构out_fis的培训数据。训练数据的前两列包含输入值,最后一列包含输出值。训练数据中的输入值在1到2的范围内,但您传递给EVALFIS的输入包含该范围之外的值。
out_fis