<div dir="ltr"><div><div>Hello,<br><br>I don't understand how get the value handly modified from a uicontrol table. I modify the table in the GUI, but I can´t get the new values.<br><br></div>Thanks,<br><br></div>Daniele<br><div><div><br>// Include an editable table into a figure:<br>// Building a table of data:<br>params = [" " "Country" "Population [Mh]" "Temp.[°C]" ];<br>towns = ["Mexico" "Paris" "Tokyo" "Singapour"]';<br>country = ["Mexico" "France" "Japan" "Singapour"]';<br>pop  = string([22.41 11.77 33.41 4.24]');<br>temp = string([26 19 22 17]');<br>table = [params; [ towns country pop temp ]]<br><br>f = gcf();<br>clf<br>as = f.axes_size;  // [width height]<br>ut = uicontrol("style","table",..<br>               "string",table,..<br>               "position",[5 as(2)-100 300 87],.. // => @top left corner of figure<br>               "tooltipstring","Data from majors towns")<br><br>// Modify by hand some values in the table. Then get them back from the ui:<br>matrix(ut.string,size(table))</div></div></div>