From communication at scilab.org Fri Jul 1 14:27:23 2011 From: communication at scilab.org (Scilab Communication) Date: Fri, 01 Jul 2011 14:27:23 +0200 Subject: Scilab under Mac OS X 10.6.8 Message-ID: <4E0DBD2B.4020701@scilab.org> Dear Scilab users and developers, Following the last update of Apple Mac OS X version 10.6.8, Scilab 5.3.2 does not load properly. We have been working since the update to resolved the situation so that users can benefit again and as soon as possible of the features of Scilab under this platform. The bug fix will be part of Scilab 5.3.3 release planned for next weeks. Meanwhile you can download a developement version which works under Mac OS X 10.6.8 here: http://downloadarea.scilab.org/download/2011-06-30/scilab-branches-5.3-1309439969-x86_64.dmg For more information, you can report to the related bug (http://bugzilla.scilab.org/show_bug.cgi?id=9670) Best Regards ----------------------------------------------- The Scilab Consortium R&D Team ----------------------------------------------- Digiteo Domaine de Voluceau Rocquencourt - B.P. 105 78153 Le Chesnay Cedex - France From fedebergero at gmail.com Mon Jul 4 20:43:26 2011 From: fedebergero at gmail.com (Federico Bergero) Date: Mon, 4 Jul 2011 15:43:26 -0300 Subject: [Scilab-Dev] Deploying a Scilab module In-Reply-To: References: <007001cc2a99$c84db340$58e919c0$@scilab.org> Message-ID: Hi I have a few questions about the atoms system. I have already uploaded the module to ATOMS and it says it is compiled correctly (http://atoms.scilab.org/toolboxes/BackDoor). But from Scilab I did atomsSystemUpdate() and I still don't see my module so I cannot install it. What I'm missing? Another thing, can I only release my module for Linux systems? I haven't got time to test it in Windows. Thanks Federico 2011/6/24 Federico Bergero : > Hi, I'm writting the version for Windows but I find some differences. > In my module I create a new thread listening to commands through a TCP port. > In the linux version I call SendScilabJob from that "other" > thread and it runs the job on the Scilab enviroment. > On windows, when I call SendScilabJob it does nothing. > For example if I run > SendScilabJob("a=1") on Linux a variable a with the value 1 is created. > On Windows that doesn?t work. > I tried using the api_scilab but I don?t find any function to just run > a job (I can read/write variables). > > Does anybody what?s going on here? > Thanks > Fed > 2011/6/21 Federico Bergero : >> Great. Thanks >> I will write the windows version. >> Best >> Fede >> >> 2011/6/21 ?: >>> >>> Hi, >>> >>> If you want to be packaged in ATOMS on Windows, your code must be compatible >>> with MSVC compiler >>> >>> To check you can use Visual studio 2010 C++ express >>> >>> http://www.microsoft.com/visualstudio/en-us/products/2010-editions/visual-cpp-express >>> >>> >>> Allan >>> >>> >>> On Tue, 21 Jun 2011 15:07:25 -0300, Federico Bergero >>> wrote: >>>> >>>> That's true. >>>> I tried to compile it on Windows but Scilab ask for MSVC. >>>> I don't have Visual Studio, can I use MINGW? >>>> Thanks >>>> Fede >>>> >>>> 2011/6/14 Allan CORNET : >>>>> >>>>> Hi, >>>>> >>>>> You created a ATOMS web page http://atoms.scilab.org/toolboxes/BackDoor >>>>> and >>>>> upload sources (it seems to be only a template in current state) >>>>> >>>>> We build for supported architectures for you and you will receive a build >>>>> log for each platform. >>>>> >>>>> And you we will do in scilab: >>>>> >>>>> atomsSystemUpdate() >>>>> atomsInstall("BackDoor") >>>>> >>>>> Currently, C source in BackDoor-0.1-1-src.zip ?will not build on Windows >>>>> since your template is empty for windows part >>>>> >>>>> Allan >>>>> >>>>> -----Message d'origine----- >>>>> De?: Federico Bergero [mailto:fedebergero at gmail.com] >>>>> Envoy??: mardi 14 juin 2011 15:15 >>>>> ??: dev >>>>> Objet?: [Scilab-Dev] Deploying a Scilab module >>>>> >>>>> Hi, I wrote a atoms module >>>>> (http://forge.scilab.org/index.php/p/BackDoor/) . >>>>> How can I distribute it through different machines/OS??? >>>>> Should I distribute it as a source and have a script to compile it and >>>>> install it? >>>>> If I distribute binary version, will this work with different OS? For >>>>> example if I compile it on an amd_64 machine, will it work on i386? >>>>> >>>>> Thanks >>>>> Fede >>>>> >>>>> -- >>>>> I find television very educational. Every time someone switches it on, I >>>>> go >>>>> into another room and read a good book. >>>>> >>>>> >>> >>> >> >> >> >> -- >> I find television very educational. Every time someone switches it on, >> I go into another room and read a good book. >> > > > > -- > I find television very educational. Every time someone switches it on, > I go into another room and read a good book. > -- I find television very educational. Every time someone switches it on, I go into another room and read a good book. From simon.gareste at scilab.org Tue Jul 5 09:45:07 2011 From: simon.gareste at scilab.org (Simon GARESTE) Date: Tue, 05 Jul 2011 09:45:07 +0200 Subject: [Scilab-Dev] Deploying a Scilab module In-Reply-To: References: <007001cc2a99$c84db340$58e919c0$@scilab.org> Message-ID: <4E12C103.3020300@scilab.org> What is your operating system? Linux I guess, from the second question, 64 or 32? which version of Scilab are you using? I can set it to be only available for linux systems, you just have to ask -> I'm doing it right now. Simon On 04/07/2011 20:43, Federico Bergero wrote: > Hi I have a few questions about the atoms system. > I have already uploaded the module to ATOMS and it says it is compiled > correctly (http://atoms.scilab.org/toolboxes/BackDoor). > But from Scilab I did atomsSystemUpdate() and I still don't see my > module so I cannot install it. > What I'm missing? > Another thing, can I only release my module for Linux systems? I > haven't got time to test it in Windows. > Thanks > Federico > > 2011/6/24 Federico Bergero: >> Hi, I'm writting the version for Windows but I find some differences. >> In my module I create a new thread listening to commands through a TCP port. >> In the linux version I call SendScilabJob from that "other" >> thread and it runs the job on the Scilab enviroment. >> On windows, when I call SendScilabJob it does nothing. >> For example if I run >> SendScilabJob("a=1") on Linux a variable a with the value 1 is created. >> On Windows that doesn?t work. >> I tried using the api_scilab but I don?t find any function to just run >> a job (I can read/write variables). >> >> Does anybody what?s going on here? >> Thanks >> Fed >> 2011/6/21 Federico Bergero: >>> Great. Thanks >>> I will write the windows version. >>> Best >>> Fede >>> >>> 2011/6/21: >>>> Hi, >>>> >>>> If you want to be packaged in ATOMS on Windows, your code must be compatible >>>> with MSVC compiler >>>> >>>> To check you can use Visual studio 2010 C++ express >>>> >>>> http://www.microsoft.com/visualstudio/en-us/products/2010-editions/visual-cpp-express >>>> >>>> >>>> Allan >>>> >>>> >>>> On Tue, 21 Jun 2011 15:07:25 -0300, Federico Bergero >>>> wrote: >>>>> That's true. >>>>> I tried to compile it on Windows but Scilab ask for MSVC. >>>>> I don't have Visual Studio, can I use MINGW? >>>>> Thanks >>>>> Fede >>>>> >>>>> 2011/6/14 Allan CORNET: >>>>>> Hi, >>>>>> >>>>>> You created a ATOMS web page http://atoms.scilab.org/toolboxes/BackDoor >>>>>> and >>>>>> upload sources (it seems to be only a template in current state) >>>>>> >>>>>> We build for supported architectures for you and you will receive a build >>>>>> log for each platform. >>>>>> >>>>>> And you we will do in scilab: >>>>>> >>>>>> atomsSystemUpdate() >>>>>> atomsInstall("BackDoor") >>>>>> >>>>>> Currently, C source in BackDoor-0.1-1-src.zip will not build on Windows >>>>>> since your template is empty for windows part >>>>>> >>>>>> Allan >>>>>> >>>>>> -----Message d'origine----- >>>>>> De : Federico Bergero [mailto:fedebergero at gmail.com] >>>>>> Envoy? : mardi 14 juin 2011 15:15 >>>>>> ? : dev >>>>>> Objet : [Scilab-Dev] Deploying a Scilab module >>>>>> >>>>>> Hi, I wrote a atoms module >>>>>> (http://forge.scilab.org/index.php/p/BackDoor/) . >>>>>> How can I distribute it through different machines/OS??? >>>>>> Should I distribute it as a source and have a script to compile it and >>>>>> install it? >>>>>> If I distribute binary version, will this work with different OS? For >>>>>> example if I compile it on an amd_64 machine, will it work on i386? >>>>>> >>>>>> Thanks >>>>>> Fede >>>>>> >>>>>> -- >>>>>> I find television very educational. Every time someone switches it on, I >>>>>> go >>>>>> into another room and read a good book. >>>>>> >>>>>> >>>> >>> >>> >>> -- >>> I find television very educational. Every time someone switches it on, >>> I go into another room and read a good book. >>> >> >> >> -- >> I find television very educational. Every time someone switches it on, >> I go into another room and read a good book. >> > > -- Simon Gareste Support& Development Engineer -- Consortium Scilab Digiteo Domaine de Voluceau Rocquencourt - B.P. 105 78153 Le Chesnay Cedex -- From fedebergero at gmail.com Tue Jul 5 20:10:03 2011 From: fedebergero at gmail.com (Federico Bergero) Date: Tue, 5 Jul 2011 15:10:03 -0300 Subject: [Scilab-Dev] Deploying a Scilab module In-Reply-To: <4E12C103.3020300@scilab.org> References: <007001cc2a99$c84db340$58e919c0$@scilab.org> <4E12C103.3020300@scilab.org> Message-ID: Great. Yes it is Linux 32/64. So why after the atomsSystemUpdate (in Linux), the module BackDoor doesn't appear? Do I have to set is a public module or something like that? Thanks. Fede 2011/7/5 Simon GARESTE : > What is your operating system? Linux I guess, from the second question, 64 > or 32? which version of Scilab are you using? > I can set it to be only available for linux systems, you just have to ask -> > I'm doing it right now. > > Simon > On 04/07/2011 20:43, Federico Bergero wrote: >> >> Hi I have a few questions about the atoms system. >> I have already uploaded the module to ATOMS and it says it is compiled >> correctly (http://atoms.scilab.org/toolboxes/BackDoor). >> But from Scilab I did atomsSystemUpdate() and I still don't see my >> module so I cannot install it. >> What I'm missing? >> Another thing, can I only release my module for Linux systems? I >> haven't got time to test it in Windows. >> Thanks >> Federico >> >> 2011/6/24 Federico Bergero: >>> >>> Hi, I'm writting the version for Windows but I find some differences. >>> In my module I create a new thread listening to commands through a TCP >>> port. >>> In the linux version I call SendScilabJob from that "other" >>> thread and it runs the job on the Scilab enviroment. >>> On windows, when I call SendScilabJob it does nothing. >>> For example if I run >>> SendScilabJob("a=1") on Linux a variable a with the value 1 is created. >>> On Windows that doesn?t work. >>> I tried using the api_scilab but I don?t find any function to just run >>> a job (I can read/write variables). >>> >>> Does anybody what?s going on here? >>> Thanks >>> Fed >>> 2011/6/21 Federico Bergero: >>>> >>>> Great. Thanks >>>> I will write the windows version. >>>> Best >>>> Fede >>>> >>>> 2011/6/21: >>>>> >>>>> Hi, >>>>> >>>>> If you want to be packaged in ATOMS on Windows, your code must be >>>>> compatible >>>>> with MSVC compiler >>>>> >>>>> To check you can use Visual studio 2010 C++ express >>>>> >>>>> >>>>> http://www.microsoft.com/visualstudio/en-us/products/2010-editions/visual-cpp-express >>>>> >>>>> >>>>> Allan >>>>> >>>>> >>>>> On Tue, 21 Jun 2011 15:07:25 -0300, Federico >>>>> Bergero >>>>> wrote: >>>>>> >>>>>> That's true. >>>>>> I tried to compile it on Windows but Scilab ask for MSVC. >>>>>> I don't have Visual Studio, can I use MINGW? >>>>>> Thanks >>>>>> Fede >>>>>> >>>>>> 2011/6/14 Allan CORNET: >>>>>>> >>>>>>> Hi, >>>>>>> >>>>>>> You created a ATOMS web page >>>>>>> http://atoms.scilab.org/toolboxes/BackDoor >>>>>>> and >>>>>>> upload sources (it seems to be only a template in current state) >>>>>>> >>>>>>> We build for supported architectures for you and you will receive a >>>>>>> build >>>>>>> log for each platform. >>>>>>> >>>>>>> And you we will do in scilab: >>>>>>> >>>>>>> atomsSystemUpdate() >>>>>>> atomsInstall("BackDoor") >>>>>>> >>>>>>> Currently, C source in BackDoor-0.1-1-src.zip ?will not build on >>>>>>> Windows >>>>>>> since your template is empty for windows part >>>>>>> >>>>>>> Allan >>>>>>> >>>>>>> -----Message d'origine----- >>>>>>> De : Federico Bergero [mailto:fedebergero at gmail.com] >>>>>>> Envoy? : mardi 14 juin 2011 15:15 >>>>>>> ? : dev >>>>>>> Objet : [Scilab-Dev] Deploying a Scilab module >>>>>>> >>>>>>> Hi, I wrote a atoms module >>>>>>> (http://forge.scilab.org/index.php/p/BackDoor/) . >>>>>>> How can I distribute it through different machines/OS??? >>>>>>> Should I distribute it as a source and have a script to compile it >>>>>>> and >>>>>>> install it? >>>>>>> If I distribute binary version, will this work with different OS? For >>>>>>> example if I compile it on an amd_64 machine, will it work on i386? >>>>>>> >>>>>>> Thanks >>>>>>> Fede >>>>>>> >>>>>>> -- >>>>>>> I find television very educational. Every time someone switches it >>>>>>> on, I >>>>>>> go >>>>>>> into another room and read a good book. >>>>>>> >>>>>>> >>>>> >>>> >>>> >>>> -- >>>> I find television very educational. Every time someone switches it on, >>>> I go into another room and read a good book. >>>> >>> >>> >>> -- >>> I find television very educational. Every time someone switches it on, >>> I go into another room and read a good book. >>> >> >> > > > -- > Simon Gareste > Support& ?Development Engineer > -- > Consortium Scilab > Digiteo > Domaine de Voluceau > Rocquencourt - B.P. 105 > 78153 Le Chesnay Cedex > -- > > -- I find television very educational. Every time someone switches it on, I go into another room and read a good book. From simon.gareste at scilab.org Wed Jul 6 10:08:16 2011 From: simon.gareste at scilab.org (Simon GARESTE) Date: Wed, 06 Jul 2011 10:08:16 +0200 Subject: [Scilab-Dev] Deploying a Scilab module In-Reply-To: References: <007001cc2a99$c84db340$58e919c0$@scilab.org> <4E12C103.3020300@scilab.org> Message-ID: <4E1417F0.60102@scilab.org> This was due to a bug in our compilation chain or website (I still have to figure out, didn't have the time yesterday), I fixed your case in your database, and have yet to fixe the bug. atomsInstall("BackDoor") should work (works now on both system for me, whereas yesterday it didn't). If it doesn't, make sure that you type the name with adequate upper cases, or that is doesn't come from you having set offline configuration to "True". Simon On 05/07/2011 20:10, Federico Bergero wrote: > Great. Yes it is Linux 32/64. > So why after the atomsSystemUpdate (in Linux), the module BackDoor > doesn't appear? Do I have to set is a public module or something like > that? > Thanks. > Fede > > > 2011/7/5 Simon GARESTE: >> What is your operating system? Linux I guess, from the second question, 64 >> or 32? which version of Scilab are you using? >> I can set it to be only available for linux systems, you just have to ask -> >> I'm doing it right now. >> >> Simon >> On 04/07/2011 20:43, Federico Bergero wrote: >>> Hi I have a few questions about the atoms system. >>> I have already uploaded the module to ATOMS and it says it is compiled >>> correctly (http://atoms.scilab.org/toolboxes/BackDoor). >>> But from Scilab I did atomsSystemUpdate() and I still don't see my >>> module so I cannot install it. >>> What I'm missing? >>> Another thing, can I only release my module for Linux systems? I >>> haven't got time to test it in Windows. >>> Thanks >>> Federico >>> >>> 2011/6/24 Federico Bergero: >>>> Hi, I'm writting the version for Windows but I find some differences. >>>> In my module I create a new thread listening to commands through a TCP >>>> port. >>>> In the linux version I call SendScilabJob from that "other" >>>> thread and it runs the job on the Scilab enviroment. >>>> On windows, when I call SendScilabJob it does nothing. >>>> For example if I run >>>> SendScilabJob("a=1") on Linux a variable a with the value 1 is created. >>>> On Windows that doesn?t work. >>>> I tried using the api_scilab but I don?t find any function to just run >>>> a job (I can read/write variables). >>>> >>>> Does anybody what?s going on here? >>>> Thanks >>>> Fed >>>> 2011/6/21 Federico Bergero: >>>>> Great. Thanks >>>>> I will write the windows version. >>>>> Best >>>>> Fede >>>>> >>>>> 2011/6/21: >>>>>> Hi, >>>>>> >>>>>> If you want to be packaged in ATOMS on Windows, your code must be >>>>>> compatible >>>>>> with MSVC compiler >>>>>> >>>>>> To check you can use Visual studio 2010 C++ express >>>>>> >>>>>> >>>>>> http://www.microsoft.com/visualstudio/en-us/products/2010-editions/visual-cpp-express >>>>>> >>>>>> >>>>>> Allan >>>>>> >>>>>> >>>>>> On Tue, 21 Jun 2011 15:07:25 -0300, Federico >>>>>> Bergero >>>>>> wrote: >>>>>>> That's true. >>>>>>> I tried to compile it on Windows but Scilab ask for MSVC. >>>>>>> I don't have Visual Studio, can I use MINGW? >>>>>>> Thanks >>>>>>> Fede >>>>>>> >>>>>>> 2011/6/14 Allan CORNET: >>>>>>>> Hi, >>>>>>>> >>>>>>>> You created a ATOMS web page >>>>>>>> http://atoms.scilab.org/toolboxes/BackDoor >>>>>>>> and >>>>>>>> upload sources (it seems to be only a template in current state) >>>>>>>> >>>>>>>> We build for supported architectures for you and you will receive a >>>>>>>> build >>>>>>>> log for each platform. >>>>>>>> >>>>>>>> And you we will do in scilab: >>>>>>>> >>>>>>>> atomsSystemUpdate() >>>>>>>> atomsInstall("BackDoor") >>>>>>>> >>>>>>>> Currently, C source in BackDoor-0.1-1-src.zip will not build on >>>>>>>> Windows >>>>>>>> since your template is empty for windows part >>>>>>>> >>>>>>>> Allan >>>>>>>> >>>>>>>> -----Message d'origine----- >>>>>>>> De : Federico Bergero [mailto:fedebergero at gmail.com] >>>>>>>> Envoy? : mardi 14 juin 2011 15:15 >>>>>>>> ? : dev >>>>>>>> Objet : [Scilab-Dev] Deploying a Scilab module >>>>>>>> >>>>>>>> Hi, I wrote a atoms module >>>>>>>> (http://forge.scilab.org/index.php/p/BackDoor/) . >>>>>>>> How can I distribute it through different machines/OS??? >>>>>>>> Should I distribute it as a source and have a script to compile it >>>>>>>> and >>>>>>>> install it? >>>>>>>> If I distribute binary version, will this work with different OS? For >>>>>>>> example if I compile it on an amd_64 machine, will it work on i386? >>>>>>>> >>>>>>>> Thanks >>>>>>>> Fede >>>>>>>> >>>>>>>> -- >>>>>>>> I find television very educational. Every time someone switches it >>>>>>>> on, I >>>>>>>> go >>>>>>>> into another room and read a good book. >>>>>>>> >>>>>>>> >>>>> >>>>> -- >>>>> I find television very educational. Every time someone switches it on, >>>>> I go into another room and read a good book. >>>>> >>>> >>>> -- >>>> I find television very educational. Every time someone switches it on, >>>> I go into another room and read a good book. >>>> >>> >> >> -- >> Simon Gareste >> Support& Development Engineer >> -- >> Consortium Scilab >> Digiteo >> Domaine de Voluceau >> Rocquencourt - B.P. 105 >> 78153 Le Chesnay Cedex >> -- >> >> > > -- Simon Gareste Support& Development Engineer -- Consortium Scilab Digiteo Domaine de Voluceau Rocquencourt - B.P. 105 78153 Le Chesnay Cedex -- From clement.david at scilab.org Wed Jul 6 14:52:05 2011 From: clement.david at scilab.org (=?ISO-8859-1?Q?Cl=E9ment?= David) Date: Wed, 06 Jul 2011 14:52:05 +0200 Subject: SEP 66: Message-ID: <1309956725.2404.19.camel@pinarellu.inria.fr> Hello, Here is a proposal for Scilab 5.4.0. To sum up, we would like to add hooks to the Xcos simulation process : pre_xcos_simulate(scs_m, needcompile) post_xcos_simulate(%cpr, scs_m, needcompile) This hooks can be used to pre-process or post-process the diagram. These Scilab functions have no implementations by default. As usual, don't hesitate to comment or suggest other hooks. -- Cl?ment David -------------- next part -------------- A non-text attachment was scrubbed... Name: SEP_066_Xcos_hooks.odt Type: application/vnd.oasis.opendocument.text Size: 12545 bytes Desc: not available URL: From Serge.Steer at inria.fr Wed Jul 6 15:50:54 2011 From: Serge.Steer at inria.fr (Serge Steer) Date: Wed, 06 Jul 2011 15:50:54 +0200 Subject: [Scilab-Dev] SEP 66: In-Reply-To: <1309956725.2404.19.camel@pinarellu.inria.fr> References: <1309956725.2404.19.camel@pinarellu.inria.fr> Message-ID: <4E14683E.10405@inria.fr> Le 06/07/2011 14:52, Cl?ment David a ?crit : > Hello, > > Here is a proposal for Scilab 5.4.0. To sum up, we would like to add > hooks to the Xcos simulation process : > > pre_xcos_simulate(scs_m, needcompile) > post_xcos_simulate(%cpr, scs_m, needcompile) > > This hooks can be used to pre-process or post-process the diagram. These > Scilab functions have no implementations by default. > > As usual, don't hesitate to comment or suggest other hooks. > > The SEP is not clear. In particular it is not explained that these two functions can be redefined by user. Moreover can these function modify scs_m and/or %cpr an example of use should be welcome Serge From calixte.denizet at scilab.org Mon Jul 11 16:34:45 2011 From: calixte.denizet at scilab.org (Calixte Denizet) Date: Mon, 11 Jul 2011 16:34:45 +0200 Subject: SEP 68 Message-ID: <4E1B0A05.9070502@scilab.org> Hello, Here is a proposal for Scilab 5.4.0. We would like to add a File Browser to set the Scilab's current working directory. Any comments would be appreciated. Calixte From calixte.denizet at scilab.org Mon Jul 11 16:36:03 2011 From: calixte.denizet at scilab.org (Calixte Denizet) Date: Mon, 11 Jul 2011 16:36:03 +0200 Subject: SEP 068 Message-ID: <4E1B0A53.2080906@scilab.org> I forgot to attach the file... -------------- next part -------------- A non-text attachment was scrubbed... Name: SEP_068_FileBrowser.odt Type: application/vnd.oasis.opendocument.text Size: 87072 bytes Desc: not available URL: From simon.gareste at scilab.org Tue Jul 12 09:23:09 2011 From: simon.gareste at scilab.org (Simon GARESTE) Date: Tue, 12 Jul 2011 09:23:09 +0200 Subject: update of jgraphx Message-ID: <4E1BF65D.2040301@scilab.org> Hi, Please note that since yesterday monday 11th of july, master branch uses the new version of jgraphx. Complementary information can be found on http://codereview.scilab.org/#change,4398. Simon -- Simon Gareste Support& Development Engineer -- Consortium Scilab Digiteo Domaine de Voluceau Rocquencourt - B.P. 105 78153 Le Chesnay Cedex -- From david.cheze at cea.fr Tue Jul 12 11:54:38 2011 From: david.cheze at cea.fr (CHEZE David 227480) Date: Tue, 12 Jul 2011 11:54:38 +0200 Subject: [scilab-Users] SEP 068 In-Reply-To: <4E1B0A53.2080906@scilab.org> References: <4E1B0A53.2080906@scilab.org> Message-ID: Hi, In addition, it would be nice if filebrowser can handle csv-like text file (extension .txt, .csv): for example configure through an UI the argument to a call to read_csv() function or csv_read() module, then quickview in editvar (must be faster thant it is until now (scilab 5.3.2 windows7 32 bits) to compete with excel) : it will promote the use of scilab for data file first inspection and quick analysis (simple computations and plots could be done in console after that). Thanks, David -----Message d'origine----- De?: Calixte Denizet [mailto:calixte.denizet at scilab.org] Envoy??: lundi 11 juillet 2011 16:36 ??: dev at lists.scilab.org; users at lists.scilab.org Objet?: [scilab-Users] SEP 068 I forgot to attach the file... From fedebergero at gmail.com Wed Jul 13 17:42:36 2011 From: fedebergero at gmail.com (Federico Bergero) Date: Wed, 13 Jul 2011 12:42:36 -0300 Subject: Question about call_scilab Message-ID: Hi I'm working on a Scilab module. I had it working with Scilab 5.2 but when tried it on Scilab 5.3.2 it does not work. The module uses SendScilabJob and now (on Scilab 5.3.2) I get Error: SendScilabJob call_scilab engine not started. Is something chaned in this module? How can I solve it? Thanks Federico -- I find television very educational. Every time someone switches it on, I go into another room and read a good book. From calixte.denizet at scilab.org Sat Jul 16 20:23:51 2011 From: calixte.denizet at scilab.org (calixte) Date: Sat, 16 Jul 2011 20:23:51 +0200 Subject: [scilab-Users] SEP 068 In-Reply-To: References: <4E1B0A53.2080906@scilab.org> Message-ID: <1310840631.24616.567.camel@Calixte-Dell> Le mardi 12 juillet 2011 ? 11:54 +0200, CHEZE David 227480 a ?crit : > Hi, > Hi David, > In addition, it would be nice if filebrowser can handle csv-like text file (extension .txt, .csv): for example configure through an UI the argument to a call to read_csv() function or csv_read() module, then quickview in editvar (must be faster thant it is until now (scilab 5.3.2 windows7 32 bits) to compete with excel) : it will promote the use of scilab for data file first inspection and quick analysis (simple computations and plots could be done in console after that). > Good idea... but we need to improve csv handling, so this feature would be probably added after the 5.4 release. Thanks Calixte > Thanks, > > David > > -----Message d'origine----- > De : Calixte Denizet [mailto:calixte.denizet at scilab.org] > Envoy? : lundi 11 juillet 2011 16:36 > ? : dev at lists.scilab.org; users at lists.scilab.org > Objet : [scilab-Users] SEP 068 > > I forgot to attach the file... From ychattah at iai.co.il Sun Jul 17 10:47:42 2011 From: ychattah at iai.co.il (computidoo) Date: Sun, 17 Jul 2011 01:47:42 -0700 (PDT) Subject: installing dev version Message-ID: <1310892462176-3176410.post@n3.nabble.com> Hello, I want to try the 6.0 version that is on dev. i download the file scilab-branches-YaSp-1310568877 how do i install the software on my computer best regards computidoo -- View this message in context: http://mailinglists.scilab.org/installing-dev-version-tp3176410p3176410.html Sent from the Scilab developers - Mailing Lists Archives mailing list archive at Nabble.com. From tanmenglong at gmail.com Mon Jul 18 15:25:43 2011 From: tanmenglong at gmail.com (tanmenglong) Date: Mon, 18 Jul 2011 21:25:43 +0800 Subject: *****SPAM***** Message-ID: _ ?? *Your gi??rl???????frie??nd w?i???????ll f???????eel t????he eff????ect?* ??? -------------- next part -------------- An HTML attachment was scrubbed... URL: From sylvestre.ledru at scilab.org Wed Jul 20 07:33:28 2011 From: sylvestre.ledru at scilab.org (Sylvestre Ledru) Date: Wed, 20 Jul 2011 07:33:28 +0200 Subject: [Scilab-Dev] installing dev version In-Reply-To: <1310892462176-3176410.post@n3.nabble.com> References: <1310892462176-3176410.post@n3.nabble.com> Message-ID: <1311140008.6869.16.camel@losinj.inria.fr> Le dimanche 17 juillet 2011 ? 01:47 -0700, computidoo a ?crit : > Hello, > I want to try the 6.0 version that is on dev. > i download the file > scilab-branches-YaSp-1310568877 > > how do i install the software on my computer I am not sure to understand your question, you install it just like any other version of Scilab ?! Sylvestre From sylvestre.ledru at scilab.org Wed Jul 20 09:10:08 2011 From: sylvestre.ledru at scilab.org (Sylvestre Ledru) Date: Wed, 20 Jul 2011 09:10:08 +0200 Subject: [Scilab-Dev] Question about call_scilab In-Reply-To: References: Message-ID: <1311145808.6869.39.camel@losinj.inria.fr> hello, Le mercredi 13 juillet 2011 ? 12:42 -0300, Federico Bergero a ?crit : > Hi I'm working on a Scilab module. > I had it working with Scilab 5.2 but when tried it on Scilab 5.3.2 it > does not work. > The module uses SendScilabJob and now (on Scilab 5.3.2) I get > Error: SendScilabJob call_scilab engine not started. > > Is something chaned in this module? How can I solve it? We enhanced call_scilab for javasci v2, we added much more checks and controls. The right way to start Scilab engine is: #ifdef _MSC_VER if ( StartScilab(NULL,NULL,NULL) == FALSE ) #else if ( StartScilab(getenv("SCI"),NULL,NULL) == FALSE ) #endif { fprintf(stderr,"Error while calling StartScilab\n"); return -1; } S From communication at scilab.org Fri Jul 22 12:13:43 2011 From: communication at scilab.org (Scilab Communication) Date: Fri, 22 Jul 2011 12:13:43 +0200 Subject: Release of Scilab 5.3.3 Message-ID: <4E294D57.4040405@scilab.org> Dear Scilab Developers, The Scilab R&D Team is pleased to announce the release of Scilab 5.3.3. This version corrects two serious bugs with the Japanese and Polish localizations and Mac OS X 10.6.8. Download and information can be found at: http://www.scilab.org/products/scilab/download Sources for this version: http://www.scilab.org/communities/developer_zone/scilab_versions/stable Best Regards ----------------------------------------------- The Scilab Consortium R&D Team ----------------------------------------------- Digiteo Domaine de Voluceau Rocquencourt - B.P. 105 78153 Le Chesnay Cedex - France From mike.pageone at googlemail.com Tue Jul 26 11:51:06 2011 From: mike.pageone at googlemail.com (Mike Page) Date: Tue, 26 Jul 2011 10:51:06 +0100 Subject: Debugging a Scilab crash Message-ID: Hi, I have some error in my Scilab code that occasionally crashes Scilab. I am fairly sure it is my fault, because the crash has only started happening recently after I made some major changes. When the crash occurs, Scilab just exits with no error message. The only log file produced by the crash is the one attached (unless there are others I have not seen). Can anyone give a clue where I should start to look for this problem? Does the log file give a clue as to what went wrong? Is there any debug mode to run Scilab that might provide extra information? Without a clue, it is quite hard to debug this problem, because my Scilab code is several thousand lines long and runs with attached real-time hardware. If I pause the execution, the hardware overruns and the code does not proceed normally. Additionally, this crash only happens about one time in twenty or so. Any help would be much appreciated. Regards, Mike. -------------- next part -------------- A non-text attachment was scrubbed... Name: hs_err_pid2976.log Type: application/octet-stream Size: 18413 bytes Desc: not available URL: From maarten.meijer at controllab.nl Tue Jul 26 15:05:22 2011 From: maarten.meijer at controllab.nl (Maarten Meijer) Date: Tue, 26 Jul 2011 15:05:22 +0200 Subject: XCos: custom menu entries Message-ID: <4E2EBB92.1080709@controllab.nl> Hello, I am currently working on C-code generation for embedded hardware purposes. For convenient user-interaction, it would be nice to include an additional menu-entrie for the specific code generation. I found this post http://mailinglists.scilab.org/XCOS-custom-menu-entries-td2611325.html#a2611329, where a developer experienced the same problem. Here, it turns out that you could either redirect the original code generation or add an additional menu-entry within the Xcos java project. I have choosen for the latter solution, and I tried to compile the XCos jar-file by means of the guide found on http://wiki.scilab.org/ScilabWithinEclipse. However, it seems that Eclipse is missing multiple variables used in the build.incl.xml file. Is it possible that, before compiling the java-source files, it is necessary to compile the complete Scilab project? As an alternative, I have in the past been able to generate the Xcos library (scilab 5.2.2) by customizing the build.incl.xml file. Here, I manually added the thirdparty libraries as well as the Scilab Gui modules libraries to the Xcos project. In order to be compatible to the different (new) Xcos versions, I will chose that java compilation method which will save me the most time (in the future). Given that background information, what would you propose? Any help would be very welcome. Best regards, Maarten Meijer Controllab Products B.V. -- -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Maarten.png Type: image/png Size: 19939 bytes Desc: not available URL: From clement.david at scilab.org Tue Jul 26 16:01:41 2011 From: clement.david at scilab.org (=?ISO-8859-1?Q?Cl=E9ment?= David) Date: Tue, 26 Jul 2011 16:01:41 +0200 Subject: [Scilab-Dev] XCos: custom menu entries In-Reply-To: <4E2EBB92.1080709@controllab.nl> References: <4E2EBB92.1080709@controllab.nl> Message-ID: <1311688901.4010.14.camel@pinarellu.inria.fr> Hello, To develop some feature into the platform you should first compile the whole sources using one of the supported compilers [http://wiki.scilab.org/Compilation%20of%20Scilab]. Then you just need to import the xcos ant build file as a new project into Eclipse. If your dev. only impact the editor, you can only add compiled jars as dependencies (not as projects). Eclipse is not mandatory, you can use any Java editor and use the compilation tools (ant) to build the jars. Adding some specific features into the editor is not trivial. If you find an elegant way to solve it, please ping us ; we will then integrate it upstream. Do not hesitate to contact us on this list or join #scilab (on OFTC) to get some help. Regards, -- Cl?ment Le mardi 26 juillet 2011 ? 15:05 +0200, Maarten Meijer a ?crit : > Hello, > > I am currently working on C-code generation for embedded hardware > purposes. For convenient user-interaction, it would be nice to include > an additional menu-entrie for the specific code generation. > > I found this post > http://mailinglists.scilab.org/XCOS-custom-menu-entries-td2611325.html#a2611329, where a developer experienced the same problem. Here, it turns out that you could either redirect the original code generation or add an additional menu-entry within the Xcos java project. > > I have choosen for the latter solution, and I tried to compile the > XCos jar-file by means of the guide found on > http://wiki.scilab.org/ScilabWithinEclipse. However, it seems that > Eclipse is missing multiple variables used in the build.incl.xml file. > Is it possible that, before compiling the java-source files, it is > necessary to compile the complete Scilab project? > > As an alternative, I have in the past been able to generate the Xcos > library (scilab 5.2.2) by customizing the build.incl.xml file. Here, I > manually added the thirdparty libraries as well as the Scilab Gui > modules libraries to the Xcos project. > > In order to be compatible to the different (new) Xcos versions, I will > chose that java compilation method which will save me the most time > (in the future). Given that background information, what would you > propose? > > Any help would be very welcome. > > Best regards, > > Maarten Meijer > Controllab Products B.V. > > > -- > -- Cl?ment David From maarten.meijer at controllab.nl Thu Jul 28 09:35:27 2011 From: maarten.meijer at controllab.nl (maarten.meijer) Date: Thu, 28 Jul 2011 00:35:27 -0700 (PDT) Subject: XCos: custom menu entries In-Reply-To: <1311688901.4010.14.camel@pinarellu.inria.fr> References: <4E2EBB92.1080709@controllab.nl> <1311688901.4010.14.camel@pinarellu.inria.fr> Message-ID: <1311838527667-3205977.post@n3.nabble.com> First of all, thank you very much for your early reaction. As for the compiling of XCos, I will use a customized ant-file. We have some idea's for an elegant feature for multiple code-generation solutions. We will of course give notice of that. The idea is to make an extra wizard after clicking 'Code generation', in which the user can select the desired code-generation tool. Maarten -- View this message in context: http://mailinglists.scilab.org/XCos-custom-menu-entries-tp3200267p3205977.html Sent from the Scilab developers - Mailing Lists Archives mailing list archive at Nabble.com.