Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Error in function of GUI(list_box)
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hi, I try to use the GUI to change the Simulink block name. When I add the list_box in my GUI design, I want to return the selected item. The MATLAB comments said that use contents{get(hObject,'Value')} returns selected item from listbox1 . However,when I try to use the contents function and to assign the value to another variable, MATLAB show me the error. The contents function is undefined.
Thank you!
0 comentarios
Respuestas (1)
Geoff Hayes
el 30 de Jun. de 2019
shengchan - I think what was missing from your code was the initialization of the contents variable...and so when you try to use it with
blocks = contents(get(hObject, 'Value'));
you probably get the Undefined function or variable 'contents'. Try doing
contents = cellstr(get(hObject, 'String'));
blocks = contents(get(hObject, 'Value'));
so that contents is defined before you use it.
0 comentarios
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!