MATLAB GUI working with TABLE (get and set data from table)
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Hi !
These days i working in GUI and i have a problem with uitable(GUI) in MATLAB. I know how to store or display some data in uitable in MATLAB. But what i don't know is how to get some data from table. For example if i have column of names Example:
1) Petar
2) Joe
3) Spike
4) Smith
and i click to Joe, how to get the name "joe" and store in one variable. In JAVA we have method jTable.getSelectedRow or jTable.getSelectedIndex Is there a similar function in MATLAB as in java where we can get a selected row as object(string,data) from uitable
Thanks a lot
Best regards.
0 Commenti
Risposta accettata
Sean de Wolski
il 14 Dic 2011
A simple example:
names = {'Walter'; 'Fangjun'; 'Jan'};
H = uitable('cellselectioncallback',@(src,evt)disp(names(evt.Indices(1))));
set(H,'data',names)
And a reference
doc uitable
for everything you want to know about them.
More: make_table.m
function make_table;
%uitable...
%build it do stuff etc.
function the_callback(...)
%what happens when you click
%What you do with the value etc.
3 Commenti
Sean de Wolski
il 14 Dic 2011
I would have a function that makes the uitable and then the callbacks as subfunctions below it. See edit.
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!