guide
1 回表示 (過去 30 日間)
古いコメントを表示
Hello Everyone,
What is error in my program?
Can anyone help me?
Thanks
Error in ==> gui_mainfcn>local_openfig at 199 gui_hFigure = openfig(name, singleton, 'auto');
Error in ==> gui_mainfcn at 94 gui_hFigure = local_openfig(gui_State.gui_Name, gui_SingletonOpt);
Error in ==> simira at 16 gui_mainfcn(gui_State, varargin{:});
%&%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
if nargin && ischar(varargin{1})
gui_State.gui_Callback = str2func(varargin{1});
end
if nargout
[varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
else
gui_mainfcn(gui_State, varargin{:});
end
function varargout = simira_OutputFcn(hObject, eventdata, handles)
varargout{1} = handles.output;
% - DO NOT EDIT
1 件のコメント
回答 (5 件)
Image Analyst
2012 年 4 月 5 日
Looks like your simira_OutputFcn function somehow got inserted into the main startup code that you're not supposed to edit. It should be after the "% - DO NOT EDIT" line and after simira_OpeningFcn. That's how GUIDE normally does it. So now I'm wondering if you even have a simira_OpeningFcn function at all.
0 件のコメント
simira atraqi
2012 年 4 月 5 日
1 件のコメント
Walter Roberson
2012 年 4 月 5 日
http://www.mathworks.com/matlabcentral/answers/7924-where-can-i-upload-images-and-files-for-use-on-matlab-answers
Walter Roberson
2012 年 4 月 5 日
You could get that error if you double-clicked on a .fig file to launch it. You need to launch the .m file instead.
0 件のコメント
simira atraqi
2012 年 4 月 5 日
1 件のコメント
Image Analyst
2012 年 4 月 6 日
No one here corresponds via email. I never even look at the email that I'm using here. Post your files somewhere like Walter suggested.
参考
カテゴリ
Help Center および File Exchange で Specifying Target for Graphics Output についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!