I'm totally new to MATLAB programming, but I received a script that somehow leaves out all the end statements for functions.
For example:
function pushbutton_open_Callback(hObject, eventdata, handles)
[FileName,PathName,FilterIndex] = uigetfile('*.txt','Select the CONFIG file');
if FileName~=0
init_session(hObject, FileName, PathName);
end
% shouldn't there be an "end" here?
function pushbutton_start_Callback(hObject, eventdata, handles)
% ....
Is that syle "okay"? Apparently, there are no syntactic errors when I try to run it, and the program has worked whenever we've used it. Are functions automatically run until the next function statement?