2

使用 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 

指定的输入范围是多少?

4

1 回答 1

3

您提供给ANFIS的数据是您用于创建 FIS 结构的训练数据out_fis。训练数据的前两列包含输入值,最后一列包含输出值。训练数据中的输入值在 1 到 2 的范围内,但您传递给EVALFIS的输入包含该范围之外的值。

于 2010-12-04T17:19:22.053 回答