Show in Listbox specific variables of workspace (GUI)
Show older comments
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!
Answers (1)
Megha Parthasarathy
on 17 May 2017
0 votes
Hello,
1 Comment
Christine Abou Nasr
on 18 May 2017
Edited: Christine Abou Nasr
on 18 May 2017
Categories
Find more on Whos in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!