>> butterworth_gui 错误使用 load 找不到文件或目录 'butterworth_gui.fig'。 出错 matlab.graphics.internal.figfile.FigFile/read (第 31 行) hgDataVars = load(filename, '-mat', '-regexp', '^hg[M]'); 出错 matlab.graphics.internal.figfile.FigFile 出错 hgload (第 56 行) FF = matlab.graphics.internal.figfile.FigFile(filename); 出错 matlab.hg.internal.openfigLegacy (第 57 行) [fig, savedvisible] = hgload(filename, struct('Visible','off')); 出错 gui_mainfcn>local_openfig (第 286 行) gui_hFigure = matlab.hg.internal.openfigLegacy(name, singleton, visible); 出错 gui_mainfcn (第 158 行) gui_hFigure = local_openfig(gui_State.gui_Name, gui_SingletonOpt, gui_Visible); 出错 butterworth_gui (第 36 行) gui_mainfcn(gui_State, varargin{:});
时间: 2024-04-06 20:35:19 浏览: 103
根据错误信息显示,你在使用 butterworth_gui 时遇到了一个问题,无法找到文件 'butterworth_gui.fig'。这个文件可能被移动或删除了,导致程序无法正常加载。请检查一下该文件是否存在于正确的路径中,并且确保程序有访问该文件的权限。如果文件确实不存在或被移动了,你需要重新获取该文件或修改程序的路径来找到该文件。
阅读全文