Problem with getting output from KeyPressFcn

조회 수: 3 (최근 30일)
yuval
yuval 2018년 2월 9일
댓글: Adam 2018년 2월 9일
Hello, I have a KeyPressFcn with two input variables and i would like one output variable.
Example of the code:
h = figure
set(h,'KeyPressFcn',{@pushbutton_callback,var1,var2});
function outputVar = pushbutton_callback(src,event,var1,var2)
outputVar = var1*var2;
end
The problem is that outputVar doesn't exist in the workspace afterwards...
I've read the documentation but still as it appears didn't really understand how to work with this function.
Thanks in advance.
  댓글 수: 1
Adam
Adam 2018년 2월 9일
Callbacks cannot define output arguments. You will need to save your value using e.g. guidata:
function pushbutton_callback(src,event,var1,var2)
hGUIData = guidata( src );
hGUIData.outputVar = var1*var2;
guidata( src, hGUIData );
end
Then it can be accessed via
hGUIData = guidata( h )
hGUIData.outputVar

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

답변 (0개)

카테고리

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