我已经在我的gui中实现了一个按钮来加载一个在editbox中设置默认值的文件。现在我希望如果文件不存在,则会出现错误,并且gui会重新启动。
我正在尝试用
做if exist(filename, 'file') == 0
errordlg('File do not exists! Generate the file first.','ERROR');
return
else
%continue do things
end
但它不会返回。给我错误说参数不存在。
Output argument "variables" (and maybe others) not assigned during call to "load_function".
如何忽略返回的事实,我的函数不会返回任何输出?因为我想“重新开始”脚本,但实际上没有重新运行它