Attempt to reference field of non-structure array
Mostra commenti meno recenti
I am using GUIDE to create a nifty tool. Originally I would open the ".fig" file in GUIDE, as you right-click it. Then run the program from there. Today I decided to 'OPEN' it directly when I right-click the ".fig" file. Here is the error:
??? Attempt to reference field of non-structure array.
Error in ==> Cable_Sizing_Rev3>choose_resistance_data_source_popup_Callback at 1569
relevant_handles = [ handles.resistivity_edit, handles.resistivity_text, handles.unit_resistivity_text, ...
Error in ==> gui_mainfcn at 96
feval(varargin{:});
Error in ==> Cable_Sizing_Rev3 at 53
gui_mainfcn(gui_State, varargin{:});
Error in ==>
@(hObject,eventdata)Cable_Sizing_Rev3('choose_resistance_data_source_popup_Callback',hObject,eventdata,guidata(hObject))
??? Error while evaluating uicontrol Callback
I have checked other soluctions and it didn't quite help solve the problem.
Risposta accettata
Più risposte (1)
Matt J
il 8 Gen 2014
1 voto
Doesn't sound like a problem. The initial way you were running the GUI is the right one. You can also run the mfile that GUIDE produces to launch the GUI.
6 Commenti
tuyen
il 9 Gen 2014
tuyen
il 9 Gen 2014
Are you sure the above errors are generated immediately just by opening the .fig? Or, is it possible that you opened the .fig and then started pressing buttons and uicontrols? I can imagine the later triggering the errors you see. Your callbacks would then be launched without the gui's data first being properly initialized by your OpeningFcn.
tuyen
il 14 Gen 2014
tuyen
il 14 Gen 2014
Categorie
Scopri di più su Printing and Saving in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!