evalfis error from tutorial line 64

7 次查看(过去 30 天)
Hi all,
I have a problem when I tried to use my ANFIS. Then, I tried up with tutorial and same error occurred as follows. Do anyone has any idea regarding this? Thanks.
>> fis = readfis('tipper');
>> output = evalfis(fis,[2 1])
Dot indexing is not supported for variables of this type.
Error in evalfis (line 64)
Nin = length(fis.input);

采纳的回答

Jesse Stowe
Jesse Stowe 2020-12-5
移动:Sam Chak 2024-10-3
It looks as if the evalfis function definition has changed recently. For me in R2018a, the inputs must be specified first:
>> output = evalfis([2 1], fis)
You can check this by running help:
>> help evalfis
evalfis Perform fuzzy inference calculations.
OUTPUTS = evalfis(INPUTS,FIS)...

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Fuzzy Logic Toolbox 的更多信息

产品


版本

R2018a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by