Add to listbox in GUI from .mat file
Ältere Kommentare anzeigen
My GUI currently has 3 push buttons and a list box. two buttons calls for the user to choose their desired data file. these data files all have the same format, however they have a different number of data sets. in the GUI when i press the pb2, it saves all the variables used that were calculated. i would like to use one of the variables which has X ammount of data set, and read that data, and write that data to the list box. here is the code i tried, i get errors about the structure and i'm quite stumped. I'm following GUIs_FEX GUI layouts and creating from the base up because I don't really understand how to do calculations in the GUIDE file. it tells me variables don't exist, and variables wiped out every function. If somone has time to discuss with me and help me that would be great, thank you!
S.ls = uicontrol('style','list','unit','pix','position',[50 50 150 450],...
'min',0,'max',2,'string','Frequencies','callback',{@ls_call});
.
.
.
load('F06_Variables')
for i=1:R
S= varargin{3}
oldstr = get(S.ls,'string');
addstr = {frequency(i)};
set(S.ls,'str',{oldstr{:},addstr{:}});
end
2 Kommentare
Jan
am 30 Jan. 2013
I do not understand "variables which has X ammount of data set". Whenever you mention in a forum, that you get errors, post a copy of the error messages also. We are good in solving problems, but bad in guessing them.
Kim Nguyen
am 30 Jan. 2013
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Graphics Performance finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!