<div dir="ltr"><div><div><div>Thanks,<br><br></div>I solved the problem. It was a program's bug.<br><br></div>Thanks,<br><br></div>Daniele<br></div><div class="gmail_extra"><br><div class="gmail_quote">2016-12-21 10:56 GMT-05:00 Samuel Gougeon <span dir="ltr"><<a href="mailto:sgougeon@free.fr" target="_blank">sgougeon@free.fr</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hello,<br>
<br>
This bug was fixed during the last summer, after the 6.0.0-b2 release.<br>
You may install (3mn. No need to uninstall your current Scilab)<br>
and use the nightly built release:<br>
<a href="http://www.scilab.org/fr/development/nightly_builds/master" rel="noreferrer" target="_blank">http://www.scilab.org/fr/devel<wbr>opment/nightly_builds/master</a><br>
<br>
HTH<br>
Samuel Gougeon<div><div class="h5"><br>
<br>
Le 21/12/2016 16:50, Daniele Tonelli a écrit :<br>
</div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div class="h5">
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>
Thanks,<br>
<br>
Daniele<br>
<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></div></div>
matrix(ut.string,size(table))/<wbr>listinfo/users<br>
</blockquote>
<br>
______________________________<wbr>_________________<br>
users mailing list<br>
<a href="mailto:users@lists.scilab.org" target="_blank">users@lists.scilab.org</a><br>
<a href="http://lists.scilab.org/mailman/listinfo/users" rel="noreferrer" target="_blank">http://lists.scilab.org/mailma<wbr>n/listinfo/users</a><br>
</blockquote></div><br></div>