matlab在错误后返回main

时间:2018-06-08 21:38:49

标签: error-handling matlab-guide

我已经在我的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". 如何忽略返回的事实,我的函数不会返回任何输出?因为我想“重新开始”脚本,但实际上没有重新运行它

0 个答案:

没有答案