Re: [Scilab-users] varialble and string

2015-10-30 Thread jbaud...@insa-rennes.fr
Le 30/10/2015 13:28, Antoine Monmayrant a écrit : Le 10/30/2015 01:03 PM, jbaud...@insa-rennes.fr a écrit : Is this what you want to do: -->x=["a","b","c","d","e"]; -->execstr(x(1)+"=1") -->a a = 1. ? Yes of course! Thanks, --Jean-Yves

Re: [Scilab-users] varialble and string

2015-10-30 Thread Antoine Monmayrant
Le 10/30/2015 01:03 PM, jbaud...@insa-rennes.fr a écrit : Hello, I use multiple variables with names given in a matrix, or vector > x=["a","b","c","d","e"]; I can easily use the variable with the function eval in math expression > 2*eval(x(1))+1 But if I want > a=1; How can I do this using

[Scilab-users] varialble and string

2015-10-30 Thread jbaud...@insa-rennes.fr
Hello, I use multiple variables with names given in a matrix, or vector > x=["a","b","c","d","e"]; I can easily use the variable with the function eval in math expression > 2*eval(x(1))+1 But if I want > a=1; How can I do this using the vector x only? I try > execstr("x(1)=1") but the ans

Re: [Scilab-users] interactive graphical window

2015-10-30 Thread Antoine Monmayrant
Le 10/30/2015 08:21 AM, Clément David a écrit : [1]:http://docs.oracle.com/javase/tutorial/uiswing/layout/visual.html Can't these illustrations/examples be reproduced in the uicontrols or uiconstraints help page? A small picture and the corresponding code would help a lot understanding which

Re: [Scilab-users] interactive graphical window

2015-10-30 Thread Antoine Monmayrant
Hi David, Thanks for the head up. I'll try to have a look at it. I think that more generally Scilab could be improved by improving the help pages so that a new user can better understand what the hell is going on with a given function. Cheers, Antoine Le Vendredi 30 Octobre 2015 08:21 CET,

Re: [Scilab-users] interactive graphical window

2015-10-30 Thread Clément David
Hello all, In fact, we just mapped some Java layout to the UIControls API. To have nice tutorials on that refers to the Java Layouts [1] tutorials. And for beginners on UI, I strongly suggests you to use Netbeans Swing GUI Builder [2] or Eclipse Swing Designer [3] to discover panel placement strat