image processing tools
조회 수: 9 (최근 30일)
이전 댓글 표시
hello guys, im currently doing project about steganography.. my question is im trying to make interface for my project, i already got .m file and it run ok with no error. the problem is im trying to change .m file to .fig file. i got an error say
varargin{1} = gui_State.gui_Callback;
if nargout[varargout{1:nargout}] = feval(varargin{:});elsefeval(varargin{:})
help me please, its for my degree project
댓글 수: 0
채택된 답변
Image Analyst
2012년 5월 17일
Try using GUIDE. There are video tutorials on it in Doug Hull's video tutorial blog area of the Mathworks' web site.
댓글 수: 0
추가 답변 (2개)
Casey
2012년 5월 17일
I am not sure I understand, but a .fig file is a figure file. I don't see how you can run (or save) a mfile (.m) as a .fig. Are you trying to make a GUI?
댓글 수: 0
Walter Roberson
2012년 5월 17일
You cannot use the "=" operator in an "if" expression. "=" is assignment, not comparison.
Square brackets cannot appear directly after a function or variable name. Square brackets are not used for indexing or for arithmetic grouping: they are only used for vector and array construction.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Printing and Saving에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!