필터 지우기
필터 지우기

How can i use pushbutton callback in opening function callback?

조회 수: 3 (최근 30일)
Nithya
Nithya 2014년 3월 11일
댓글: Nithya 2014년 3월 12일
I have a very long script file.But inorder to fix it in GUI, i have divided it into small functions. The program starts with GUI and few functions are written in opening function. When i click on push button callback function, i want one function to be called. But when i do this it gives me error. I think the values inside variables are not reaching the function because it gives me errors related to undefined variable, etc. What is the solution to this problem.
  댓글 수: 1
Chandrasekhar
Chandrasekhar 2014년 3월 11일
check if the corresponding callback function for the push button is being called or not

댓글을 달려면 로그인하십시오.

답변 (1개)

Dishant Arora
Dishant Arora 2014년 3월 11일
Those variables are local to the opening function and thus the scope is limited to opening function only. See this How can I share data between callback functions in my GUI(s)?
  댓글 수: 1
Nithya
Nithya 2014년 3월 12일
it doc helped me.. but i have a doubt is it possible to create a gui fn with input paramters and without output parameters? I tried,
function varargout = gui3(actualv, Lsoftv, EVnew, EVold,I1)
and the error i got was:
Undefined variable varargin.
Error in gui3 (line 42) gui_mainfcn(gui_State, varargin{:});

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by