From rei.listas at yahoo.com Mon Jul 2 00:56:25 2012 From: rei.listas at yahoo.com (Reinaldo) Date: Sun, 1 Jul 2012 15:56:25 -0700 (PDT) Subject: Linpro function does not work on Scilab 5.4.0-beta-1 for Mac OS X Lion Message-ID: <1341183385.42129.YahooMailNeo@web122501.mail.ne1.yahoo.com> Hi all developers, I register the bug on "linpro" function ("quapro" atoms) for Scilab 5.4.0-alpha-1 for Mac OS X Lion. This bug still occurs on Scilab 5.4.0-beta-1. :-( I hope once registered this bug, Scilab could check it and provides a solution. The "quapro" atoms is important for optimization. All best, Dr. Reinaldo. PS: Bug number 11301:?http://bugzilla.scilab.org/show_bug.cgi?id=11301 -------------- next part -------------- An HTML attachment was scrubbed... URL: From sylvestre.ledru at scilab-enterprises.com Sun Jul 1 14:01:25 2012 From: sylvestre.ledru at scilab-enterprises.com (Sylvestre Ledru) Date: Sun, 01 Jul 2012 14:01:25 +0200 Subject: [Scilab-Dev] scilab-5.4 compilation issues In-Reply-To: References: Message-ID: <4FF03C15.8030603@scilab-enterprises.com> Bonjour Guillaume Sorry about le lag, we had crazy days here! Le 27/06/2012 04:14, Guillaume Horel a ?crit : > Hello all, > > I'm trying to package the scilab-5.4 for gentoo. Scilab-5.3 compiles > fine on my computer, so my setup is nothing crazy. When I try to > compile from the latest snapshot from master or the beta1 tag, I get > the following error inside the compilation of the xml modules: > http://pastebin.com/hqTdW7Pm Interesting. I never saw that bug. Which version of libxml do you have ? > A bit of googling reveals that this is likely caused by ``dangling > extern "C" statements''. I tried to fix it using the following patch: > http://paste.lugons.org/show/2649/ These extern "C" clearly look > redundant since they're already in the libxml2 header files. This > allows the compilation to keep on going. However I get the following > error later on: > > make[1]: Entering directory [...] > /var/tmp/portage/sci-mathematics/scilab-5.3.999/work/scilab/modules/xml/.libs/libscixml.so: > undefined reference to `isXMLAttr(int*, void*)' > collect2: ld returned 1 exit status > > This may or may not be related to the previous fix given that the > missing symbols are xml related. Does anybody has any idea how to fix > this? Yes, the extern changes the mangeling of the library symbol (C++ vs C). It is the consequence of your previous change. Sylvestre From sylvestre.ledru at scilab-enterprises.com Mon Jul 2 01:41:36 2012 From: sylvestre.ledru at scilab-enterprises.com (Sylvestre Ledru) Date: Mon, 02 Jul 2012 01:41:36 +0200 Subject: [Scilab-Dev] Linpro function does not work on Scilab 5.4.0-beta-1 for Mac OS X Lion In-Reply-To: <1341183385.42129.YahooMailNeo@web122501.mail.ne1.yahoo.com> References: <1341183385.42129.YahooMailNeo@web122501.mail.ne1.yahoo.com> Message-ID: <4FF0E030.4010801@scilab-enterprises.com> Le 02/07/2012 00:56, Reinaldo a ?crit : > Hi all developers, > > I register the bug on "linpro" function ("quapro" atoms) for Scilab > 5.4.0-alpha-1 for Mac OS X Lion. > > This bug still occurs on Scilab 5.4.0-beta-1. :-( > > I hope once registered this bug, Scilab could check it and provides a > solution. The "quapro" atoms is important > for optimization. > Well, the bug report was not really bringing enough information to help. I also moved the bug here: http://forge.scilab.org/index.php/p/quapro/issues/773/ Because it is a problem related to quapro module and not the Scilab software. By the way, quapro is non-free code and removed from the Scilab distribution during the switch to the CeCILL license. You should try to download the source and build the module yourself to see if the problem is fixed. Sylvestre -------------- next part -------------- An HTML attachment was scrubbed... URL: From dungnguyenbk at gmail.com Mon Jul 2 05:47:09 2012 From: dungnguyenbk at gmail.com (hehiha) Date: Sun, 1 Jul 2012 20:47:09 -0700 (PDT) Subject: How to implement cscopse Message-ID: <1341200829189-4024477.post@n3.nabble.com> I try to draw my graph like that. t=0:5:15; plot(t,sin(t),'+-'); http://mailinglists.scilab.org/file/n4024477/graph.png Could you tell me. How to update cscope block of xcos to have the same functions ?. Please. -- View this message in context: http://mailinglists.scilab.org/How-to-implement-cscopse-tp4024477.html Sent from the Scilab developers - Mailing Lists Archives mailing list archive at Nabble.com. From guillaume.horel at gmail.com Mon Jul 2 06:50:02 2012 From: guillaume.horel at gmail.com (Guillaume Horel) Date: Mon, 2 Jul 2012 00:50:02 -0400 Subject: [Scilab-Dev] scilab-5.4 compilation issues In-Reply-To: <4FF03C15.8030603@scilab-enterprises.com> References: <4FF03C15.8030603@scilab-enterprises.com> Message-ID: Thanks for the reply, so the question is how do I fix the first error then? If I don't remove the extern statements I get a bunch of "error: template with C linkage" errors. Guillaume On Sun, Jul 1, 2012 at 8:01 AM, Sylvestre Ledru wrote: > Bonjour Guillaume > > Sorry about le lag, we had crazy days here! > > > Le 27/06/2012 04:14, Guillaume Horel a ?crit : >> Hello all, >> >> I'm trying to package the scilab-5.4 for gentoo. Scilab-5.3 compiles >> fine on my computer, so my setup is nothing crazy. When I try to >> compile from the latest snapshot from master or the beta1 tag, I get >> the following error inside the compilation of the xml modules: >> http://pastebin.com/hqTdW7Pm > Interesting. I never saw that bug. Which version of libxml do you have ? >> A bit of googling reveals that this is likely caused by ``dangling >> extern "C" statements''. I tried to fix it using the following patch: >> http://paste.lugons.org/show/2649/ These extern "C" clearly look >> redundant since they're already in the libxml2 header files. This >> allows the compilation to keep on going. However I get the following >> error later on: >> >> make[1]: Entering directory > [...] >> /var/tmp/portage/sci-mathematics/scilab-5.3.999/work/scilab/modules/xml/.libs/libscixml.so: >> undefined reference to `isXMLAttr(int*, void*)' >> collect2: ld returned 1 exit status >> >> This may or may not be related to the previous fix given that the >> missing symbols are xml related. Does anybody has any idea how to fix >> this? > Yes, the extern changes the mangeling of the library symbol (C++ vs C). > It is the consequence of your previous change. > > > Sylvestre > From laurent.gom at gmail.com Mon Jul 2 11:16:35 2012 From: laurent.gom at gmail.com (Laurent) Date: Mon, 2 Jul 2012 02:16:35 -0700 (PDT) Subject: "Cannot open JVM library" when starting Scilab twice In-Reply-To: <4FEF1B5F.3010007@scilab-enterprises.com> References: <1340790836577-4024457.post@n3.nabble.com> <4FEF1B5F.3010007@scilab-enterprises.com> Message-ID: <1341220595262-4024479.post@n3.nabble.com> Thanks for your reply. I've reported the bug on the tracker: http://bugzilla.scilab.org/show_bug.cgi?id=11394 Until it's fixed, is there any workaround that I could use to allow Scilab to be executed more than once? In fact I don't really need to close and reopen it, something that completely clears the session (variables, working directory, etc.) would be ok. -- View this message in context: http://mailinglists.scilab.org/Cannot-open-JVM-library-when-starting-Scilab-twice-tp4024457p4024479.html Sent from the Scilab developers - Mailing Lists Archives mailing list archive at Nabble.com. From sylvestre.ledru at scilab-enterprises.com Mon Jul 2 12:41:51 2012 From: sylvestre.ledru at scilab-enterprises.com (Sylvestre Ledru) Date: Mon, 02 Jul 2012 12:41:51 +0200 Subject: [Scilab-Dev] scilab-5.4 compilation issues In-Reply-To: References: <4FF03C15.8030603@scilab-enterprises.com> Message-ID: <4FF17AEF.4020607@scilab-enterprises.com> Which version of libxml do you have ? S Le 02/07/2012 06:50, Guillaume Horel a ?crit : > Thanks for the reply, so the question is how do I fix the first error > then? If I don't remove the extern statements I get a bunch of "error: > template with C linkage" errors. > > Guillaume > > On Sun, Jul 1, 2012 at 8:01 AM, Sylvestre Ledru > wrote: >> Bonjour Guillaume >> >> Sorry about le lag, we had crazy days here! >> >> >> Le 27/06/2012 04:14, Guillaume Horel a ?crit : >>> Hello all, >>> >>> I'm trying to package the scilab-5.4 for gentoo. Scilab-5.3 compiles >>> fine on my computer, so my setup is nothing crazy. When I try to >>> compile from the latest snapshot from master or the beta1 tag, I get >>> the following error inside the compilation of the xml modules: >>> http://pastebin.com/hqTdW7Pm >> Interesting. I never saw that bug. Which version of libxml do you have ? >>> A bit of googling reveals that this is likely caused by ``dangling >>> extern "C" statements''. I tried to fix it using the following patch: >>> http://paste.lugons.org/show/2649/ These extern "C" clearly look >>> redundant since they're already in the libxml2 header files. This >>> allows the compilation to keep on going. However I get the following >>> error later on: >>> >>> make[1]: Entering directory >> [...] >>> /var/tmp/portage/sci-mathematics/scilab-5.3.999/work/scilab/modules/xml/.libs/libscixml.so: >>> undefined reference to `isXMLAttr(int*, void*)' >>> collect2: ld returned 1 exit status >>> >>> This may or may not be related to the previous fix given that the >>> missing symbols are xml related. Does anybody has any idea how to fix >>> this? >> Yes, the extern changes the mangeling of the library symbol (C++ vs C). >> It is the consequence of your previous change. >> >> >> Sylvestre >> From sylvestre.ledru at scilab-enterprises.com Mon Jul 2 13:45:50 2012 From: sylvestre.ledru at scilab-enterprises.com (Sylvestre Ledru) Date: Mon, 02 Jul 2012 13:45:50 +0200 Subject: [Scilab-Dev] Re: "Cannot open JVM library" when starting Scilab twice In-Reply-To: <1341220595262-4024479.post@n3.nabble.com> References: <1340790836577-4024457.post@n3.nabble.com> <4FEF1B5F.3010007@scilab-enterprises.com> <1341220595262-4024479.post@n3.nabble.com> Message-ID: <4FF189EE.2060608@scilab-enterprises.com> Le 02/07/2012 11:16, Laurent a ?crit : > Thanks for your reply. > > I've reported the bug on the tracker: > http://bugzilla.scilab.org/show_bug.cgi?id=11394 > > Until it's fixed, is there any workaround that I could use to allow Scilab > to be executed more than once? Yes, instead of BOOL StartScilab(char *SCIpath, char *ScilabStartup, int Stacksize); use int Call_ScilabOpen(char* SCIpath, BOOL advancedMode, char *ScilabStartup, int Stacksize); and set the advancedMode argument to FALSE. (I tested this workaround and it tackles the issue). If you don't need the graphic features. Otherwise, you will have to wait for a fix (or provide a patch ;) Sylvestre From laurent.gom at gmail.com Mon Jul 2 16:33:08 2012 From: laurent.gom at gmail.com (Laurent) Date: Mon, 2 Jul 2012 07:33:08 -0700 (PDT) Subject: "Cannot open JVM library" when starting Scilab twice In-Reply-To: <4FF189EE.2060608@scilab-enterprises.com> References: <1340790836577-4024457.post@n3.nabble.com> <4FEF1B5F.3010007@scilab-enterprises.com> <1341220595262-4024479.post@n3.nabble.com> <4FF189EE.2060608@scilab-enterprises.com> Message-ID: <1341239588975-4024483.post@n3.nabble.com> Call_ScilabOpen works perfectly, thank you very much. -- View this message in context: http://mailinglists.scilab.org/Cannot-open-JVM-library-when-starting-Scilab-twice-tp4024457p4024483.html Sent from the Scilab developers - Mailing Lists Archives mailing list archive at Nabble.com. From sylvestre.ledru at scilab-enterprises.com Mon Jul 2 17:04:32 2012 From: sylvestre.ledru at scilab-enterprises.com (Sylvestre Ledru) Date: Mon, 02 Jul 2012 17:04:32 +0200 Subject: [Scilab-Dev] Re: "Cannot open JVM library" when starting Scilab twice In-Reply-To: <1341239588975-4024483.post@n3.nabble.com> References: <1340790836577-4024457.post@n3.nabble.com> <4FEF1B5F.3010007@scilab-enterprises.com> <1341220595262-4024479.post@n3.nabble.com> <4FF189EE.2060608@scilab-enterprises.com> <1341239588975-4024483.post@n3.nabble.com> Message-ID: <4FF1B880.2070509@scilab-enterprises.com> Le 02/07/2012 16:33, Laurent a ?crit : > Call_ScilabOpen works perfectly, thank you very much. > Welcome. FYI, I am considering tagging StartScilab as obsolete because it does not allow the start without the advanced mode. Sylvestre -- Sylvestre Ledru Operation Manager / Community Manager ----------------------------------------------------------- Scilab Enterprises 143bis rue Yves Le Coz - 78000 Versailles, France http://www.scilab-enterprises.com From dungnguyenbk at gmail.com Tue Jul 3 12:41:04 2012 From: dungnguyenbk at gmail.com (hehiha) Date: Tue, 3 Jul 2012 03:41:04 -0700 (PDT) Subject: How to show a message box after stop execute. Message-ID: <1341312064418-4024488.post@n3.nabble.com> Hi I try to implement my block. It will show a message box after stop execute. Could you tell me how to implement that ? 1. How to check when stop execute. Because when flags= ending I didn't see any action. 2. How to call scilab functions from computation functions. -- View this message in context: http://mailinglists.scilab.org/How-to-show-a-message-box-after-stop-execute-tp4024488.html Sent from the Scilab developers - Mailing Lists Archives mailing list archive at Nabble.com. From communication at scilab-enterprises.com Wed Jul 4 12:02:27 2012 From: communication at scilab-enterprises.com (Communication) Date: Wed, 04 Jul 2012 12:02:27 +0200 Subject: To contact us Message-ID: <4FF414B3.7030305@scilab-enterprises.com> Dear Scilab Developers, We would like to thank you to use our mailing lists and hope they fulfill their purposes in helping the exchange between you and finding the answers to the questions you might have about using/developing Scilab. If necessary, you can still call on the expertise of Scilab developers in contacting us directly at support at scilab-enterprises.com which now replaces scilab.support at scilab.org. For any question dealing with Scilab contribution (to the code, help pages translation, developing external modules?) we just have launched a new dedicated email: contribute at scilab-enterprises.com Sincerely, Communication Department ------------------------------------ Scilab Enterprises 143bis rue Yves Le Coz - 78000 Versailles, France http://www.scilab-enterprises.com From adela.neacsu at ens-lyon.fr Wed Jul 4 13:00:05 2012 From: adela.neacsu at ens-lyon.fr (Adela Neacsu) Date: Wed, 4 Jul 2012 04:00:05 -0700 (PDT) Subject: Jhdf5 problem on MacOs Message-ID: <1341399605161-4024497.post@n3.nabble.com> Hello, I recently installed Scilab on my MacOsX Snow Leopard(10.6). For that I used the sources and the prerequirements from here : http://www.scilab.org/communities/developer_zone/scilab_versions/stable/stable2 When trying to run the SCI/bin/scilab, I ran into the following error : dyld: Library not loaded: /opt/local/lib/libhdf5.7.dylib, so I used MacPorts to install hdf5. That caused other errors, so I uninstalled it, and installed hdf5-18, which is a more recent version. Now I can't seem to pass this error: java.lang.UnsatisfiedLinkError: no jhdf5 in java.library.path . I googled it and found out that I should modify the LD_LIBRARY_PATH(which now points to opt/local/lib, where MacPorts made the installation) and the CLASSPATH (which now points to the thirdparty directory from my scilab sources directory, where the jhdf5.jar is) . Even after doing these modifications, it does not work. Is there any way to fix this? Thanks, Adela -- View this message in context: http://mailinglists.scilab.org/Jhdf5-problem-on-MacOs-tp4024497.html Sent from the Scilab developers - Mailing Lists Archives mailing list archive at Nabble.com. From adela.neacsu at ens-lyon.fr Wed Jul 4 18:54:41 2012 From: adela.neacsu at ens-lyon.fr (Adela Neacsu) Date: Wed, 4 Jul 2012 09:54:41 -0700 (PDT) Subject: Call_scilab compilation error Message-ID: <1341420881957-4024509.post@n3.nabble.com> Hello, I have tried to use call_scilab, as described in this tutorial http://help.scilab.org/docs/5.4.0-beta-1/en_US/compile_and_run_call_scilab.html , but I can't seem to compile the example. I keep getting the following error: Undefined symbols: "_StartScilab", referenced from: _main in cc7e4T3S.o "_SendScilabJob", referenced from: _main in cc7e4T3S.o _main in cc7e4T3S.o _main in cc7e4T3S.o "_TerminateScilab", referenced from: _main in cc7e4T3S.o ld: symbol(s) not found collect2: ld returned 1 exit status make: *** [all] Error 1 I used the makefile given in the example (for binary). Any ideas? Thank you, Adela :) -- View this message in context: http://mailinglists.scilab.org/Call-scilab-compilation-error-tp4024509.html Sent from the Scilab developers - Mailing Lists Archives mailing list archive at Nabble.com. From sylvestre.ledru at scilab-enterprises.com Thu Jul 5 02:01:51 2012 From: sylvestre.ledru at scilab-enterprises.com (Sylvestre Ledru) Date: Wed, 04 Jul 2012 18:01:51 -0600 Subject: [Scilab-Dev] Jhdf5 problem on MacOs In-Reply-To: <1341399605161-4024497.post@n3.nabble.com> References: <1341399605161-4024497.post@n3.nabble.com> Message-ID: <4FF4D96F.3030308@scilab-enterprises.com> Le 04/07/2012 05:00, Adela Neacsu a ?crit : > Hello, > I recently installed Scilab on my MacOsX Snow Leopard(10.6). For that I used > the sources and the prerequirements from here : > http://www.scilab.org/communities/developer_zone/scilab_versions/stable/stable2 > When trying to run the SCI/bin/scilab, I ran into the following error : > dyld: Library not loaded: /opt/local/lib/libhdf5.7.dylib, so I used MacPorts > to install hdf5. That caused other errors, so I uninstalled it, and > installed hdf5-18, which is a more recent version. Now I can't seem to pass > this error: > java.lang.UnsatisfiedLinkError: no jhdf5 in java.library.path . I googled it > and found out that I should modify the LD_LIBRARY_PATH(which now points to > opt/local/lib, where MacPorts made the installation) and the CLASSPATH > (which now points to the thirdparty directory from my scilab sources > directory, where the jhdf5.jar is) . Even after doing these modifications, > it does not work. > Is there any way to fix this? See: http://mailinglists.scilab.org/path-to-jhdf5-td4024459.html Sylvestre From adela.neacsu at ens-lyon.fr Thu Jul 5 09:34:50 2012 From: adela.neacsu at ens-lyon.fr (Adela Neacsu) Date: Thu, 5 Jul 2012 00:34:50 -0700 (PDT) Subject: Jhdf5 problem on MacOs In-Reply-To: <4FF4D96F.3030308@scilab-enterprises.com> References: <4FF4D96F.3030308@scilab-enterprises.com> Message-ID: <1341473690188-4024512.post@n3.nabble.com> Hello, I read that thread before asking the question, the only problem was that I couldn't find the libjhdf5.jnilib, even though I remember taking it from the prerequisites... So I downloaded the prerequisites again and I found it, and it all worked well eventually. Thank you very much for your help, Adela :) -- View this message in context: http://mailinglists.scilab.org/Re-Jhdf5-problem-on-MacOs-tp4024511p4024512.html Sent from the Scilab developers - Mailing Lists Archives mailing list archive at Nabble.com. From jari-pekka.ikonen at kolumbus.fi Thu Jul 5 12:49:05 2012 From: jari-pekka.ikonen at kolumbus.fi (Jari-Pekka Ikonen) Date: Thu, 5 Jul 2012 13:49:05 +0300 Subject: Some symbolic calculation ideas, Integral Tables etc. Message-ID: <260824D75BC84C6E8E76E017CD4AFD42@Annenkotikone> Hi, One can do symbolic calculations with Scilab using expression handlers of character strings. To do it easier one could use classes (symbolic class etc.). ********************************************************************************************************************************************************************** Here is one idea about how to generate Integral Tables having differentiation of expressions available: (compare Issue 3311 SymPy development) To create an Integral <-> Integrand Table for all achievable Integral expressions one needs to create all expression-trees including all functions and functionlike expression quantities (==fnq), like: Constants,Variables, +,-,*,/,^,f1(arg1),f2(arg1,arg2),...,fn(arg1,...,argn), Diff1(f,x),Diff2(f,x,y),...,Diffn(f,x0,x1,...,xn), Integrate1(f,x1,x1a,x1b),Integrate2(f,x,y,xa,xb,ya,yb),..., Integraten(f,x0,x1,...,xn,x1a,x1b,x2a,x2b,...,xna,xnb), where every argument is also an expressiontree. Every fnq can be numbered, so every expression is equivalent to a numbertree. Now: To construct all expressions up to N fnq:s in it one can start from simplest (one fnq, no arguments), list all fnq:s like that and then proceed to two, three etc. up to N fnqs.The result will always become a number tree. I think Scilab should include a procedure call that would return all these fnq-expressions (as number trees or as expressions) in a Table: Allcombinations_fnq(N) Then differentiating this Table (at easies using number trees) of all expressions would give an Integral Table as such.Then all linear combinations would also be Integral Tables. Applying all available transformation rules would then give alternative versions of same integrals. To solve an integral it is then enough to create the number tree of an Integrand and use the Integral Table, which is fast. Comment 1 by project member asmeurer at gmail.com, Jun 27, 2012 Do you know of any other computer algebra systems that do something like this so we can see how they have it implemented? Comment 2 by jari-pek... at kolumbus.fi, Today (13 hours ago) Matlab with Symbolic Math Toolbox can use and execute text M-files, that can also be variables and created runtime by Matlab code. To create an expression tree including a subset of all functionlike expression items (==fnq) one needs following variables: isfnqincluded = [0,0,0,1,0,1,1,1,1,0,0]; % where 0 is not included and 1 is included Then isfnqincluded(nfnq) tells if fnq number nfnq is included in the expression item handling or not. Items can be like: Itemname Itemnumber Item value Itemtype arguments arg.types Constant 1 (value of the constant) (Const types) 0 [] Variable 2 "variable name" (Variable types) 1 [(argtype)] fn1 3 "function name" (fn1 type) n [t1,t2,t3,...,tn] ... sin 10 "sin" (sin types) 1 [(int,rat,real or complex)] atan2 11 "atan2" (atan2 types) 2 [2x(int,rat,real or complex)] ... Diff 50 "differentiation" (Diff types) 4 [ta,tb,expr,diffvar] Integrate 51 "integration" (Integrate types) 4 [ta,tb,expr,intgvar] ... etc. for all fnq:s Allexpressionscanners scan through all combinations of expression items to create on valid expression at a time. Easiest way is probably from bottom to top. First looping (Loop 1....Loop P+1) gives every expression item an unique number (loop counter value common to all following loops is Ifnq): Loop 1: Pick 0 argument expression items: Ifnq=1 Itemnumbers: 1, type 1st Ifnq+=1 % This is C, replace same for MATLAB Ifnq=Ifnq+1 Itemnumbers: 1, type 2nd Ifnq+=1 Itemnumbers: 1, type 3rd Ifnq+=1 Itemnumbers: 1, type 4th Ifnq+=1 Itemnumbers: 1, type 5th Ifnq+=1 ...(rest with 0 arguments) % Above loop results as an input of fnq:s with 0 arguments, certain types. % At any expression later on these can be replaced to an argument place % needed to be of that certain type. Loop 2 Pick 1 argument expression items: Ifnq+=1 Itemnumbers: 2, type 1st Ifnq+=1 Itemnumbers: 2, type 2nd Ifnq+=1 Itemnumbers: 2, type 3rd Ifnq+=1 Itemnumbers: 2, type 4th Ifnq+=1 Itemnumbers: 2, type 5th Ifnq+=1 ... Ifnq+=1 Itemnumbers: 10, type 1st Ifnq+=1 Itemnumbers: 10, type 2nd Ifnq+=1 Itemnumbers: 10, type 3rd Ifnq+=1 Itemnumbers: 10, type 4th Ifnq+=1 Itemnumbers: 10, type 5th Ifnq+=1 ...(rest with 1 arguments) % Above loop results as an input of fnq:s with 1 arguments, certain types. % At any expression later on these can be replaced to an argument place % needed to be of that certain type. Loop 3 Pick 2 argument expression items: Ifnq+=1 Itemnumbers: 11, type 1st Ifnq+=1 Itemnumbers: 11, type 2nd Ifnq+=1 Itemnumbers: 11, type 3rd Ifnq+=1 Itemnumbers: 11, type 4th Ifnq+=1 Itemnumbers: 11, type 5th Ifnq+=1 ...(rest with 2 arguments) % Above loop results as an input of fnq:s with 2 arguments, certain types. % At any expression later on these can be replaced to an argument place % needed to be of that certain type. Loop 4 Pick 3 argument expression items: Ifnq+=1 Itemnumbers:...(rest with 3 arguments, certain types) % Above loop results as an input of fnq:s with 3 arguments, certain types. % At any expression later on these can be replaced to an argument place % needed to be of that certain type. ... Loop K Pick K-1 argument expression items: Ifnq+=1 Itemnumbers:...(rest with K-1 arguments, certain types) % Above loop results as an input of fnq:s with K-1 arguments, certain types. % At any expression later on these can be replaced to an argument place % needed to be of that certain type. If there are no expression items having more than P items, then P+1:th Loop is the last in this list.The idea is to have a counter that gives every loop result an unique number to identify it later on. Next looping level starts to create "all expressions" list. This may be easier from Top to bottom: Starting at Expression outermost fnq, say start level is Ilevel=Ifnqtop. % Ilevel handling is this: Pick each Ifnq-list item having level Ilevel For each of these items replace all arguments by Ilevel-1 loop handling results. When Ilevel reaches 0 replace rest argument places with 0 argument expression Items % This way all Ifnq:s will be used and all arguments will have all Ifnq:s down to % Ilevel 0 where rest of the argument places are replaced by constants. % This algorithm also includes all types of arguments in all argument places. % Final scan could drop away all those alternatives that are not valid, or previous % algorithm could simply include type checking and drop away alternatives that are % not valid. % In MATLAB it is then easy to replace Ifnq:s numbers with actual expression, % differentiate this (using Symbolic Math Toolbox) and again replace the % expression items % (function names etc) with Ifnq values with all types or certain types. % Linear combinations and transformation rules can also be applied using the % Symbolic Math Toolbox which gives alternate forms to same differentiations. % Reading differentiation results other way round will give an Integral Table % of all available expressions. Of course one then needs an % Expression to Ifnq-expression converter which is just a replace loop. % If one handles MATLAB/Programming Language code also as fnq:s one can % this way create % "all available algorithms"-trees, which may be of more use in quantum computers. % Also some codetree optimization issues as well as % "finding all algorithms suitable to a task" up to a certain complexity % can be handled. % % One could also utilise this to handle "Mathematics world to Digital World % relations" possibilities. Comment 4 by jari-pek... at kolumbus.fi, Today (moments ago) To prove an Integral solution stepwise from this table one needs following: Inversed(transformation rules) & Inversed(linear combination) & Inversed(differentiation including inversed chain rules) This should be relatively easy to implement using Scilab data types. Of course to include all expression items there needs to be a Table of Expression Items (fnq:s) available and to differentiate them there needs to be a Differentiation Table available and to transform expressions there needs to be an Expression Transformation Table available. Sometimes in the Future Symbolic calculation will most probably be included in the Scilab Software. -------------- next part -------------- An HTML attachment was scrubbed... URL: From adela.neacsu at ens-lyon.fr Thu Jul 5 14:26:01 2012 From: adela.neacsu at ens-lyon.fr (Adela Neacsu) Date: Thu, 5 Jul 2012 05:26:01 -0700 (PDT) Subject: Jhdf5 problem on MacOs In-Reply-To: <1341473690188-4024512.post@n3.nabble.com> References: <4FF4D96F.3030308@scilab-enterprises.com> <1341473690188-4024512.post@n3.nabble.com> Message-ID: <1341491161628-4024519.post@n3.nabble.com> Hello again, Even though copying the .jnilib in the /bin directory worked, I believe there should be a more general solution to this problem. I tried to make a program that uses call_scilab and I had the same error as before, and copying the library in the same directory as my executable fixed it. In order for the .jnilib to be in the java.library.path, I tried to modify DYLD_LIBRARY_PATH (on MacOsX 10.6 ) and also I copied it in /Library/Java/Extensions/ , where it should be found. None of these worked, so now if I want to do something, I always have to copy this file in my current directories (that does not seem right ...) Could you give some advice ? Thank you, Adela. -- View this message in context: http://mailinglists.scilab.org/Re-Jhdf5-problem-on-MacOs-tp4024511p4024519.html Sent from the Scilab developers - Mailing Lists Archives mailing list archive at Nabble.com. From laurent.berger at univ-lemans.fr Fri Jul 6 10:05:02 2012 From: laurent.berger at univ-lemans.fr (laurent berger) Date: Fri, 6 Jul 2012 01:05:02 -0700 (PDT) Subject: x_ticks and tlist Message-ID: <1341561902254-4024526.post@n3.nabble.com> Hi, I have got a problem with scilab-5.4.0-beta-1 with windows XP. Behavior is not stable : somtetimes ticks labels are not present, sometimes are at the wrong place and sometimes it's fine. In Scilab-5.3.3 and 5.4.0-alpha everything are OK. My program is : x=0:0.1:2*%pi; plot(x,sin(x),'r'); xtitle('Temp?rature fonction de l''heure') xlabel('date'); ylabel('temperature (?C) '); xgrid(); a=gca(); nb1=size(a.x_ticks.labels); legGrad=[]; tps0=0; for i=1:nb1(1) tpsaxe=tps0+a.x_ticks.locations(i); [y m d h mi s]=datevec(tpsaxe); s=[string(d)+'/'+string(m)+ ' '+string(h)+':'+string(mi)]; while length(s)<10 s=s+' '; end legGrad=[legGrad; s]; end p=a.x_ticks.locations; a.x_ticks = tlist(["ticks", "locations", "labels"], p, legGrad); -- View this message in context: http://mailinglists.scilab.org/x-ticks-and-tlist-tp4024526.html Sent from the Scilab developers - Mailing Lists Archives mailing list archive at Nabble.com. From rui.hirokawa at gmail.com Sun Jul 8 04:41:37 2012 From: rui.hirokawa at gmail.com (Rui Hirokawa) Date: Sun, 08 Jul 2012 11:41:37 +0900 Subject: error in xmltojar Message-ID: <4FF8F361.2000202@gmail.com> Hello, I am updating the localizaed scilan help files using xmltojar on Scilab master branch. It causes an error, -->xmltojar Total files without example: 1332 Total generated html files: 1352 !--error 4 Undefined variable: fileToExec at line 500 of function xmltoformat called by : at line 9 of function xmltojar called by : xmltojar For the older source code like scilab-5.4.0b1, it works fine. Could you give some hints ? Rui From calixte.denizet at scilab-enterprises.com Sun Jul 8 11:57:12 2012 From: calixte.denizet at scilab-enterprises.com (Calixte DENIZET) Date: Sun, 08 Jul 2012 11:57:12 +0200 Subject: [Scilab-Dev] error in xmltojar In-Reply-To: <4FF8F361.2000202@gmail.com> References: <4FF8F361.2000202@gmail.com> Message-ID: <4FF95978.9020900@scilab-enterprises.com> On 08/07/2012 04:41, Rui Hirokawa wrote: > Hello, > > I am updating the localizaed scilan help files using xmltojar > on Scilab master branch. > It causes an error, Hi Rui, You should recompile the module helptools: make clean all macros Calixte > > > -->xmltojar > > Total files without example: 1332 > Total generated html files: 1352 > !--error 4 > Undefined variable: fileToExec > at line 500 of function xmltoformat called by : > at line 9 of function xmltojar called by : > xmltojar > > For the older source code like scilab-5.4.0b1, > it works fine. > > Could you give some hints ? > > Rui > > > -- > To unsubscribe from this mailing-list, please send an empty mail to > dev-unsubscribe at lists.scilab.org > To check the archives of this mailing list, see > http://mailinglists.scilab.org/ > From sylvestre.ledru at scilab-enterprises.com Sun Jul 8 04:03:39 2012 From: sylvestre.ledru at scilab-enterprises.com (Sylvestre Ledru) Date: Sat, 07 Jul 2012 20:03:39 -0600 Subject: [Scilab-Dev] x_ticks and tlist In-Reply-To: <1341561902254-4024526.post@n3.nabble.com> References: <1341561902254-4024526.post@n3.nabble.com> Message-ID: <4FF8EA7B.6050905@scilab-enterprises.com> Le 06/07/2012 02:05, laurent berger a ?crit : > Hi, > > I have got a problem with scilab-5.4.0-beta-1 with windows XP. Behavior is > not stable : somtetimes ticks labels are not present, sometimes are at the > wrong place and sometimes it's fine. > In Scilab-5.3.3 and 5.4.0-alpha everything are OK. > Even it is likely to be already reported (there are some problems with the ticks in the beta-1 release), please report a bug :) Thanks Sylvestre -- Sylvestre Ledru Operations Manager / Community Manager ----------------------------------------------------------- Scilab Enterprises 143bis rue Yves Le Coz - 78000 Versailles, France http://www.scilab-enterprises.com From dungnguyenbk at gmail.com Wed Jul 11 12:29:25 2012 From: dungnguyenbk at gmail.com (hehiha) Date: Wed, 11 Jul 2012 03:29:25 -0700 (PDT) Subject: Setting parameter with selected box Message-ID: <1342002565901-4024562.post@n3.nabble.com> Hi I implement my module (external module) In my module. I use selected box to setting parameter. I know that only GUI control support selected box. I can use GUI control to setting parameter for my block. But I don't know method to save my setting after I change parameters. ex: Default value a =1 b = case1 c=abc I change a = 2 b = case2 c=tuyu How to save value after I change for my block to simulation. -- View this message in context: http://mailinglists.scilab.org/Setting-parameter-with-selected-box-tp4024562.html Sent from the Scilab developers - Mailing Lists Archives mailing list archive at Nabble.com. From dungnguyenbk at gmail.com Thu Jul 12 05:48:28 2012 From: dungnguyenbk at gmail.com (hehiha) Date: Wed, 11 Jul 2012 20:48:28 -0700 (PDT) Subject: "Cannot open JVM library" when starting Scilab twice In-Reply-To: <4FF1B880.2070509@scilab-enterprises.com> References: <1340790836577-4024457.post@n3.nabble.com> <4FEF1B5F.3010007@scilab-enterprises.com> <1341220595262-4024479.post@n3.nabble.com> <4FF189EE.2060608@scilab-enterprises.com> <1341239588975-4024483.post@n3.nabble.com> <4FF1B880.2070509@scilab-enterprises.com> Message-ID: <1342064908018-4024568.post@n3.nabble.com> Hi In my module (xcos external module) C file i use if (StartScilab (NULL, NULL, 0) == FALSE) But have error can not open JVM libary I change to if (Call_ScilabOpen(NULL, FALSE, NULL, 0)== 0) But. When I simulate my block. Scilab pending in this line and scilab process can not normal exit. I must use force this process (WScilex process). Did you have the same problem. -- View this message in context: http://mailinglists.scilab.org/Cannot-open-JVM-library-when-starting-Scilab-twice-tp4024457p4024568.html Sent from the Scilab developers - Mailing Lists Archives mailing list archive at Nabble.com. From sylvestre.ledru at scilab-enterprises.com Wed Jul 11 17:58:30 2012 From: sylvestre.ledru at scilab-enterprises.com (Sylvestre Ledru) Date: Wed, 11 Jul 2012 09:58:30 -0600 Subject: SEP #81: Extend test_run to export in a xUnit format Message-ID: <4FFDA2A6.80305@scilab-enterprises.com> Hi Abstract This SEP details the introduction of a fourth argument for test_run. Rationale Continous integration systems are becoming more and more popular. Among the most famous software in this domain, Jenkins (formelly called Hudson) has now become the reference. As part of the quality effort on Scilab, Scilab Enterprises has setup an instance of Jenkins available: http://build.scilab.org/ In this context, it is important that the Scilab test suite could be integrated in Jenkins in order to let Jenkins managing new test failing, the amount of tests, etc. This SEP proposes to introduce a fourth argument to the test_run function. This string argument, it would define the path to an XML file containing the result of the execution. The selected format is called xUnit. Already normalized, it is used by Junit, PHPUnit, and many other. This will allow a simple integration of Scilab results into third party applications. *Syntax* status = test_run(module,test_name,options, XMLFile) Example Usage status = test_run("core",[],[], TMPDIR+/"results-test-core.xml") Thanks for the comments, Sylvestre -- Sylvestre Ledru Operations Manager / Community Manager ----------------------------------------------------------- Scilab Enterprises 143bis rue Yves Le Coz - 78000 Versailles, France http://www.scilab-enterprises.com -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: SEP_081_test_run_xunit.pdf Type: application/pdf Size: 275721 bytes Desc: not available URL: From rui.hirokawa at gmail.com Sun Jul 15 02:06:13 2012 From: rui.hirokawa at gmail.com (Rui Hirokawa) Date: Sun, 15 Jul 2012 09:06:13 +0900 Subject: [Scilab-Dev] error in xmltojar In-Reply-To: <4FF95978.9020900@scilab-enterprises.com> References: <4FF8F361.2000202@gmail.com> <4FF95978.9020900@scilab-enterprises.com> Message-ID: <50020975.8060407@gmail.com> Hi, Thank you for the response. I tried to rebuild the modules with 'make clean all macros', and it was done successfully. But the same error is still there... > Undefined variable: fileToExec > at line 500 of function xmltoformat called by : > at line 9 of function xmltojar called by : > xmltojar make clean Rui Calixte DENIZET wrote: > On 08/07/2012 04:41, Rui Hirokawa wrote: >> Hello, >> >> I am updating the localizaed scilan help files using xmltojar >> on Scilab master branch. >> It causes an error, > > Hi Rui, > > You should recompile the module helptools: > make clean all macros > > Calixte > >> >> >> -->xmltojar >> >> Total files without example: 1332 >> Total generated html files: 1352 >> !--error 4 >> Undefined variable: fileToExec >> at line 500 of function xmltoformat called by : >> at line 9 of function xmltojar called by : >> xmltojar >> >> For the older source code like scilab-5.4.0b1, >> it works fine. >> >> Could you give some hints ? >> >> Rui >> >> -- Rui Hirokawa (@rui_hi) From calixte.denizet at scilab-enterprises.com Sun Jul 15 14:46:22 2012 From: calixte.denizet at scilab-enterprises.com (Calixte DENIZET) Date: Sun, 15 Jul 2012 14:46:22 +0200 Subject: [Scilab-Dev] error in xmltojar In-Reply-To: <50020975.8060407@gmail.com> References: <4FF8F361.2000202@gmail.com> <4FF95978.9020900@scilab-enterprises.com> <50020975.8060407@gmail.com> Message-ID: <5002BB9E.40509@scilab-enterprises.com> Hi Rui, What is the command you use to generate the help ? Calixte On 15/07/2012 02:06, Rui Hirokawa wrote: > Hi, > > Thank you for the response. > I tried to rebuild the modules with 'make clean all macros', > and it was done successfully. > > But the same error is still there... > >> Undefined variable: fileToExec >> at line 500 of function xmltoformat called by : >> at line 9 of function xmltojar called by : >> xmltojar > make clean > Rui > > Calixte DENIZET wrote: >> On 08/07/2012 04:41, Rui Hirokawa wrote: >>> Hello, >>> >>> I am updating the localizaed scilan help files using xmltojar >>> on Scilab master branch. >>> It causes an error, >> Hi Rui, >> >> You should recompile the module helptools: >> make clean all macros >> >> Calixte >> >>> >>> -->xmltojar >>> >>> Total files without example: 1332 >>> Total generated html files: 1352 >>> !--error 4 >>> Undefined variable: fileToExec >>> at line 500 of function xmltoformat called by : >>> at line 9 of function xmltojar called by : >>> xmltojar >>> >>> For the older source code like scilab-5.4.0b1, >>> it works fine. >>> >>> Could you give some hints ? >>> >>> Rui >>> >>> From rui.hirokawa at gmail.com Mon Jul 16 08:33:39 2012 From: rui.hirokawa at gmail.com (Rui Hirokawa) Date: Mon, 16 Jul 2012 15:33:39 +0900 Subject: [Scilab-Dev] error in xmltojar In-Reply-To: <5002BB9E.40509@scilab-enterprises.com> References: <4FF8F361.2000202@gmail.com> <4FF95978.9020900@scilab-enterprises.com> <50020975.8060407@gmail.com> <5002BB9E.40509@scilab-enterprises.com> Message-ID: <5003B5C3.3050906@gmail.com> Hi Calixte, I am using 'xmltojar'. It works fine with the same command on MS-Windows, but it doesn't work on Ubuntu 12.04. Rui (2012/07/15 21:46), Calixte DENIZET wrote: > Hi Rui, > > What is the command you use to generate the help ? > > Calixte > > > On 15/07/2012 02:06, Rui Hirokawa wrote: >> Hi, >> >> Thank you for the response. >> I tried to rebuild the modules with 'make clean all macros', >> and it was done successfully. >> >> But the same error is still there... >> >>> Undefined variable: fileToExec >>> at line 500 of function xmltoformat called by : >>> at line 9 of function xmltojar called by : >>> xmltojar >> make clean >> Rui >> >> Calixte DENIZET wrote: >>> On 08/07/2012 04:41, Rui Hirokawa wrote: >>>> Hello, >>>> >>>> I am updating the localizaed scilan help files using xmltojar >>>> on Scilab master branch. >>>> It causes an error, >>> Hi Rui, >>> >>> You should recompile the module helptools: >>> make clean all macros >>> >>> Calixte >>> >>>> >>>> -->xmltojar >>>> >>>> Total files without example: 1332 >>>> Total generated html files: 1352 >>>> !--error 4 >>>> Undefined variable: fileToExec >>>> at line 500 of function xmltoformat called by : >>>> at line 9 of function xmltojar called by : >>>> xmltojar >>>> >>>> For the older source code like scilab-5.4.0b1, >>>> it works fine. >>>> >>>> Could you give some hints ? >>>> >>>> Rui >>>> >>>> > > > -- > To unsubscribe from this mailing-list, please send an empty mail to > dev-unsubscribe at lists.scilab.org > To check the archives of this mailing list, see > http://mailinglists.scilab.org/ > -- Rui Hirokawa http://twitter.com/rui_hi From calixte.denizet at scilab-enterprises.com Mon Jul 16 09:42:11 2012 From: calixte.denizet at scilab-enterprises.com (Calixte DENIZET) Date: Mon, 16 Jul 2012 09:42:11 +0200 Subject: [Scilab-Dev] error in xmltojar In-Reply-To: <5003B5C3.3050906@gmail.com> References: <4FF8F361.2000202@gmail.com> <4FF95978.9020900@scilab-enterprises.com> <50020975.8060407@gmail.com> <5002BB9E.40509@scilab-enterprises.com> <5003B5C3.3050906@gmail.com> Message-ID: <5003C5D3.6040808@scilab-enterprises.com> Hi Rui, Very weird.... I just tryed: $ LANG=ja_JP.UTF-8 ./bin/scilab -nw ___________________________________________ scilab-branch-master Scilab ???????? Scilab ??????? (DIGITEO) Copyright (c) 2011-2012 (Scilab Enterprises) Copyright (c) 1989-2012 (INRIA) Copyright (c) 1989-2007 (ENPC) ___________________________________________ ???????????: ????????????? -->xmltojar() ja_JP?Scilab????? ?????????????? Building the scilab manual file [javaHelp] Total files without example: 1938 Total generated html files: 2579 ans = /home/calixte/git/master3/scilab/scilab/modules/helptools/jar/scilab_ja_JP_help.jar --> My OS is a Debian testing 64bits. Calixte On 16/07/2012 08:33, Rui Hirokawa wrote: > Hi Calixte, > > I am using 'xmltojar'. > It works fine with the same command on MS-Windows, but it doesn't work > on Ubuntu 12.04. > > Rui > > > (2012/07/15 21:46), Calixte DENIZET wrote: >> Hi Rui, >> >> What is the command you use to generate the help ? >> >> Calixte >> >> >> On 15/07/2012 02:06, Rui Hirokawa wrote: >>> Hi, >>> >>> Thank you for the response. >>> I tried to rebuild the modules with 'make clean all macros', >>> and it was done successfully. >>> >>> But the same error is still there... >>> >>>> Undefined variable: fileToExec >>>> at line 500 of function xmltoformat called by : >>>> at line 9 of function xmltojar called by : >>>> xmltojar >>> make clean >>> Rui >>> >>> Calixte DENIZET wrote: >>>> On 08/07/2012 04:41, Rui Hirokawa wrote: >>>>> Hello, >>>>> >>>>> I am updating the localizaed scilan help files using xmltojar >>>>> on Scilab master branch. >>>>> It causes an error, >>>> Hi Rui, >>>> >>>> You should recompile the module helptools: >>>> make clean all macros >>>> >>>> Calixte >>>> >>>>> -->xmltojar >>>>> >>>>> Total files without example: 1332 >>>>> Total generated html files: 1352 >>>>> !--error 4 >>>>> Undefined variable: fileToExec >>>>> at line 500 of function xmltoformat called by : >>>>> at line 9 of function xmltojar called by : >>>>> xmltojar >>>>> >>>>> For the older source code like scilab-5.4.0b1, >>>>> it works fine. >>>>> >>>>> Could you give some hints ? >>>>> >>>>> Rui >>>>> >>>>> >> >> -- >> To unsubscribe from this mailing-list, please send an empty mail to >> dev-unsubscribe at lists.scilab.org >> To check the archives of this mailing list, see >> http://mailinglists.scilab.org/ >> > From Jean-Pierre.Dussault at USherbrooke.ca Tue Jul 17 04:01:44 2012 From: Jean-Pierre.Dussault at USherbrooke.ca (Jean-Pierre Dussault) Date: Mon, 16 Jul 2012 22:01:44 -0400 Subject: Adapting LIPSOL toolbox Message-ID: <5004C788.5090809@USherbrooke.ca> Hi, I wich to use the LIPSOL_1.1 toolbox and unfortunately, it is no longer available. I wish to use it in my optimization course. I succeeded in converting (quick and dirty way) the demos, the library, but my attempts to produce help files did'nt work. It seems the new version of "add_help_chapter" looks for a .jar file and the old package has a bunch of .htm and .xml files. I am sure you do not convert by hand such old toolboxes man files. Can someone point out a tool to make the conversion? Many thanks, JPD From yjlee123 at gmail.com Thu Jul 19 19:07:27 2012 From: yjlee123 at gmail.com (Yung-Jang Lee) Date: Fri, 20 Jul 2012 01:07:27 +0800 Subject: [Scilab-Dev] Windows distributions of Scilab does not include Elementary Function Object Libraries In-Reply-To: <1341048265658-4024467.post@n3.nabble.com> References: <1341048265658-4024467.post@n3.nabble.com> Message-ID: Hi: You can first create *.def files from DLL with following source : ----------------- impdef.cpp --------------------- #include #include void main(int argc,char**argv) { DWORD* dll=(DWORD*)LoadLibrary(argv[1]); DWORD *nt=dll+dll[15]/4+6, *dir=nt+24, *exports=(DWORD*)(nt[7]+dir[0]), *name=(DWORD*)(nt[7]+exports[8]), *addr=(DWORD*)(nt[7]+exports[7]); printf("LIBRARY %s\nEXPORTS\n",argv[1]); for(DWORD i=0;i elementary_functions.def lib /machine:i386 /def:elementary_functions.def will generate elementary_functions.lib on SCI/bin. YungLee 2012/6/30 ierturk > I have a problem with building scicos block computational function library > from c-code. Function includes an elementary function from > elementary_functions and elementary_functions_f libraries. While libraries > is built successfully under 32-bit Debian Squeeze system, but not under > 32-bit Windows. I think, I need to below object libraries under windows. > > ** elementary_functions.lib > ** elementary_functions_f.lib > > But windows distribution of Scilab-5.3.3 includes only dll libraries of > them, but not object libraries. How do I get the symbols from elementary > function libraries? Please let me know, if you have any comment on this > problem. > > Thank in advance, > Ibrahim > > -- > View this message in context: > http://mailinglists.scilab.org/Windows-distributions-of-Scilab-does-not-include-Elementary-Function-Object-Libraries-tp4024467.html > Sent from the Scilab developers - Mailing Lists Archives mailing list > archive at Nabble.com. > > -- > To unsubscribe from this mailing-list, please send an empty mail to > dev-unsubscribe at lists.scilab.org > To check the archives of this mailing list, see > http://mailinglists.scilab.org/ > > -------------- next part -------------- An HTML attachment was scrubbed... URL: