passing variable from one callback to another callback in gui

1 次查看(过去 30 天)
function first_Callback(hObject, eventdata, handles)
k=2;
function second_Callback(hObject, eventdata, handles)
g=k+1;
disp(g);
I want to use the k value in first function in second. How do I use it? Please help me...

回答(2 个)

Rik
Rik 2019-5-12
Store the value of k inside your guidata struct.

Image Analyst
Image Analyst 2019-5-12
This is a FAQ, so See the FAQ document

类别

Help CenterFile Exchange 中查找有关 Introduction to Installation and Licensing 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by