Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个指南 GUI,我需要在另一个功能中更改其中一个按钮的颜色。我的朋友告诉我,如果不使用 GUIDE GUI,那么只能在两侧全局按下按钮。但它不适用于指南 GUI。谁能告诉我为什么?
您不必使用global变量,也可以通过handles(如果您使用 GUIDE)访问它。
global
handles
function myCallback(hObj,evt,handles) data = get(handles.myOtherPushButton); disp(data); end