Clear Filters
Clear Filters

How can I solve the error of too many input arguments in fuzzy logic toolbox?

3 views (last 30 days)
I'm new here so i don't understand a thing. I was interested in fuzzy logic for food control operations with the help of matlab. I took the help of a decades old book for the program; i'm seeing this and i have no clue
for i = 1:k
CC = [fuzzy(S1(i,:), Qrel(i,:)); fuzzy(S2(i,:), Qrel(i,:)); fuzzy(S3(i,:), Qrel(i,:))];
So=So+CC ;
end
Error using fuzzy
Too many input arguments.
please help out
*see page 397 in the attached pdf for clarity.

Accepted Answer

Walter Roberson
Walter Roberson on 4 May 2024
Currently, in MATLAB, the command fuzzy invokes a fuzzy logic designer.
The actual code on page 397 does not invoke fuzzy: the actual code invokes fuzzyf . The code for the function fuzzyf is given at the bottom of page 399.

More Answers (0)

Products


Release

R2024a

Community Treasure Hunt

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

Start Hunting!