Hi, i am working one code to make a gui. After i save fuzzy logic with spec .fis and then I make a gui and save this gui with name linefolo.fig. Fact, i save .fis and .fig in same file. And then after I try to callback push button, error.
My code :
function pushbutton1_Callback(hObject, eventdata, handles)
a = readfis('linefol.fis');
out = evalfis([handles.kiri handles.kanan handles.lebarjalur],a);
set =([handles.edit4 handles.edit5 handles.edit6],'string',out);
I keep getting an error (Invalid expression. When calling a function or indexing a variable, use parentheses. Otherwise, check for mismatched delimiters.) gives the error in the line
set = ([handles.edit4 handles.edit5 handles.edit6],'string'out);
0 Comments
Sign in to comment.