Problema con uiopen desde GUIDE
显示 更早的评论
Hola con todos. espero que lean esta pregunta la verdad no suena difícil pero me tiene un día sin poder solucionarlo. Cuando cargo desde el editor mediante "uiopen" un archivo.mat se cargan las variables que el archivo contiene en el workspace, hasta ahí todo bien es decir podría trabajar con las variables cargadas. El problema esta cuando utilizo un puchbutton en guide al abrir el archivo.mat no se cargan las variables en workspace, y por lo tanto no puedo trabajar con las variables que este contiene...Si me pudieran ayudar les agradecería infinitamente... Saludos.
采纳的回答
更多回答(1 个)
Jules Ray
2013-5-4
0 个投票
por loq ue entiendo estas creando un fui que abre un archivo .mat con un botón. debes definir los handles para hacer esto, por ejemplo si tu boton se llama botón:
%% este parte del script es el callback de tu botón function boton_Callback(hObject, eventdata, handles) % hObject handle to stationsdir (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA)
handles = guidata(hObject) % Retrieve GUI data (the handles structure) [file,folder]=uigetfile('*.mat'); filename=fullfile(folder,file); data=load(filename)
handles.data=data guidata(hObject, handles); % Update handles structure
debería funcionar.... suerte
类别
在 帮助中心 和 File Exchange 中查找有关 Inertias and Loads 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!