Show in Listbox specific variables of workspace (GUI)
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Christine Abou Nasr
el 15 de Mayo de 2017
Editada: Christine Abou Nasr
el 18 de Mayo de 2017
Hello, I have two listboxes in a GUI and i would like to show in each one of my listbox different variables of my workspace. I tried doing :
function update_listbox(handles)
vars = evalin('base', 'who');
vars1 = evalin('base', 'name_var_wksp');
set(handles.listbox6,'String',vars)
set(handles.listbox7,'String',vars1)
but it gives me the values of the variable and not the name, in the listbox. I would just like to have the string in the listbox in order to plot later. Using matlab R2013a.
Thanks!
0 comentarios
Respuestas (1)
Megha Parthasarathy
el 17 de Mayo de 2017
Hello,
1 comentario
Christine Abou Nasr
el 18 de Mayo de 2017
Editada: Christine Abou Nasr
el 18 de Mayo de 2017
Ver también
Categorías
Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!