MATLAB GUI working with TABLE (get and set data from table)
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuesta aceptada
Sean de Wolski
el 14 de Dic. de 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 comentarios
Sean de Wolski
el 14 de Dic. de 2011
I would have a function that makes the uitable and then the callbacks as subfunctions below it. See edit.
Más respuestas (0)
Ver también
Categorías
Más información sobre Get Started with MATLAB 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!