not enough input arguments
이전 댓글 표시
hi everyone..
im new to matlab. im developing a multidecision support system using fuzzy logic with 4 inputs and one output . i want to convert .fis file to .m file so i have written code as
function out = myfuztest2(x,y,z,w)
f=readfis('NEW3.fis');
out=evalfis ([x y z w],f);
end
but im getting error as not enough input arguments..
any kind of help will be appreciated.
댓글 수: 3
Bob Thompson
2018년 3월 6일
Which line is matlab giving you the error for? The "not enough input arguments" error is fairly self explanatory on a basic level, but a lot of times I find I have empty variables for my inputs which gives me this error.
Walter Roberson
2018년 3월 6일
How are you invoking this function?
srinija kammari
2018년 3월 8일
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Fuzzy Logic in Simulink에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!