From clement.david at scilab-enterprises.com Mon Mar 2 09:56:15 2015 From: clement.david at scilab-enterprises.com (=?ISO-8859-1?Q?Cl=E9ment?= David) Date: Mon, 02 Mar 2015 09:56:15 +0100 Subject: [Scilab-Dev] problem with == In-Reply-To: <1425055865327-4031750.post@n3.nabble.com> References: <1425055865327-4031750.post@n3.nabble.com> Message-ID: <1425286575.2219.14.camel@scilab-enterprises.com> Le vendredi 27 f?vrier 2015 ? 09:51 -0700, Emil a ?crit : > sin(%pi/4)==cos(%pi/4) ans = F It is correct as the difference is below tolerance of the machine. See http://help.scilab.org/docs/5.5.1/en_US/percenteps.html and http://help.scilab.org/docs/5.5.1/en_US/assert_checkalmostequal.html . $ scilab -nwni Scilab 5.5.1 (Feb 18 2015, 09:52:55) -->sin(%pi/4)==cos(%pi/4) ans = F -->sin(%pi/4) ans = 0.7071068 -->cos(%pi/4) ans = 0.7071068 -->sin(%pi/4) - cos(%pi/4) ans = - 1.110D-16 -->%eps %eps = 2.220D-16 -- Cl?ment DAVID From communication at scilab-enterprises.com Tue Mar 3 09:42:39 2015 From: communication at scilab-enterprises.com (Scilab Communications) Date: Tue, 03 Mar 2015 09:42:39 +0100 Subject: [Scilab-Dev] Did you register for ScilabTEC? Message-ID: <54F573FF.1010701@scilab-enterprises.com> Dear Scilab users, The early bird for ScilabTEC registration ends in 1 week. Do not wait anymore and register now on: http://scilabtec.com/index.php/registration Complete program of our two-day conference is available on: http://scilabtec.com/ Regards -- Communication Department, Scilab Enterprises 143bis rue Yves Le Coz - 78000 Versailles (France) http://www.scilab-enterprises.com - http://www.scilab.org From clement.david at scilab-enterprises.com Tue Mar 3 10:24:29 2015 From: clement.david at scilab-enterprises.com (=?ISO-8859-1?Q?Cl=E9ment?= David) Date: Tue, 03 Mar 2015 10:24:29 +0100 Subject: [Scilab-Dev] [Scilab-users] Issue when compiling Scilab: "Cannot allocate this quantity of memory" In-Reply-To: <1425301264061-4031761.post@n3.nabble.com> References: <1425301264061-4031761.post@n3.nabble.com> Message-ID: <1425374669.2419.9.camel@scilab-enterprises.com> Hello (added dev ML), Le lundi 02 mars 2015 ? 06:01 -0700, Nukles a ?crit : > So my guess is: MAXLONG is not declared, so the function does not return a > value (or it returns 0) and therefore the error message is triggered because > the stacksize given as input is higher than 0 or NULL or N/A. > > My questions are then: > > - Why are all lines commented where MAXLONG is defined? On my system (Fedora 21 x86_64) the MAXLONG macro is defined at : stackinfo.c:35 #define MAXLONG LONG_MAX and LONG_MAX comes from limits.h > - Where does MAXLONG originate from? Is it something passed from the > kernel? > - How can I solve the problem? Well, as we do not have any PPC64 at Scilab I cannot check. Is a VM available for that platform / distro ? -- Cl?ment From Jean-Pierre.Dussault at USherbrooke.ca Tue Mar 3 11:23:27 2015 From: Jean-Pierre.Dussault at USherbrooke.ca (Jean-Pierre Dussault) Date: Tue, 3 Mar 2015 10:23:27 +0000 Subject: [Scilab-Dev] CUTEr Problem while loading the range, group and elfun into Scilab Message-ID: <8865B42176F76B49BD383100F58459D41014F7@XMBX05.sti.usherbrooke.ca> Hi, in 5.5.X, I cannot use CUTEr anymore. Worked OK in 5.4.X. Just try the demo "basic usage" -->path=get_sif_path()+'sif'; //get the SIF database path -->siffile=path+'/LSNNODOC.SIF'; //select the LSNNODOC.SIF problem -->probpath=TMPDIR+'/LSNNODOC'; //set the directory where to create generated files -->sifdecode(siffile,probpath) //build the fortran files defining the problem -->buildprob(probpath) // compile and link the generated files !--error 10000 Problem while loading the range,group and elfun into Scilab at line 31 of function buildprob called by : buildprob(probpath) // compile and link the generated files at line 24 of exec file called by : (script_path) then exec(script_path, -1);end;clear script_path;;if exists("%oldgcbo" while executing a callback I found http://forge.scilab.org/index.php/p/cuter/issues/1357/ Is a "ticket" on forge.scilab.org filed as a bug report? Thx, JPD -------------- next part -------------- An HTML attachment was scrubbed... URL: From clement.david at scilab-enterprises.com Tue Mar 3 17:38:37 2015 From: clement.david at scilab-enterprises.com (=?ISO-8859-1?Q?Cl=E9ment?= David) Date: Tue, 03 Mar 2015 17:38:37 +0100 Subject: [Scilab-Dev] CUTEr Problem while loading the range, group and elfun into Scilab In-Reply-To: <8865B42176F76B49BD383100F58459D41014F7@XMBX05.sti.usherbrooke.ca> References: <8865B42176F76B49BD383100F58459D41014F7@XMBX05.sti.usherbrooke.ca> Message-ID: <1425400717.2419.17.camel@scilab-enterprises.com> Hello, Yep, usually opening a ticket on the forge is the right way (as it is an external module). But do not hesitate to ping the maintainers. I fixed the issue, an ATOMS update will be available soon. -- Cl?ment Le mardi 03 mars 2015 ? 10:23 +0000, Jean-Pierre Dussault a ?crit : > Hi, > > in 5.5.X, I cannot use CUTEr anymore. Worked OK in 5.4.X. > > Just try the demo "basic usage" > -->path=get_sif_path()+'sif'; //get the SIF database path > > -->siffile=path+'/LSNNODOC.SIF'; //select the LSNNODOC.SIF > problem > > -->probpath=TMPDIR+'/LSNNODOC'; //set the directory where to > create generated files > > -->sifdecode(siffile,probpath) //build the fortran files > defining the problem > > -->buildprob(probpath) // compile and link the > generated files > !--error 10000 > Problem while loading the range,group and elfun into Scilab > at line 31 of function buildprob called by : > buildprob(probpath) // compile and link the > generated files > at line 24 of exec file called by : > (script_path) then exec(script_path, -1);end;clear > script_path;;if exists("%oldgcbo" > while executing a callback > > I found http://forge.scilab.org/index.php/p/cuter/issues/1357/ > > Is a "ticket" on forge.scilab.org filed as a bug report? > > > Thx, > > JPD > > _______________________________________________ > dev mailing list > dev at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/dev From communication at scilab-enterprises.com Wed Mar 4 12:24:36 2015 From: communication at scilab-enterprises.com (Scilab Communications) Date: Wed, 04 Mar 2015 12:24:36 +0100 Subject: [Scilab-Dev] Scilab back to GSOC! Message-ID: <54F6EB74.4040100@scilab-enterprises.com> Dear all, Scilab is pleased to have been accepted as organization mentor to Google Summer of Code 2015. You are a student and interested in contributing to Scilab as part of the Google Summer of Code 2015? Do not hesitate to contact us and submit your project. Ideas of development of Scilab are available on Scilab Wiki (http://wiki.scilab.org/GSoC_project_proposal). Consult also the "how to apply" page (http://wiki.scilab.org/How%20to%20apply%20to%20the%20GSOC%20%3F). Students applications are opened from March 16 until March 27. If you want more information on GSOC program, please vite their dedicated website (http://www.google-melange.com/gsoc/homepage/google/gsoc2015). Thanks Regards -- Communication Department, Scilab Enterprises 143bis rue Yves Le Coz - 78000 Versailles (France) http://www.scilab-enterprises.com - http://www.scilab.org -------------- next part -------------- An HTML attachment was scrubbed... URL: From martin.weber at ptb.de Thu Mar 5 11:33:21 2015 From: martin.weber at ptb.de (martin.weber at ptb.de) Date: Thu, 5 Mar 2015 11:33:21 +0100 Subject: [Scilab-Dev] Interconnection between SciLab an Visual Basic Message-ID: Dear Sir or Madam, i'm using scilab for some time and tried to set up an interconnection between scilab and visual basic. If found out that this is somehow possible some time ago, but i could not find much information in the internet how to set up the connection in a newly created project. Yesterday, after more than half a year of frustration, i was able to set my project up correctly. In the end it is quiet easy if you know all the steps that need to be done. I guess that some other users might have a similar problem and can not find much information by googleing. Therefore i wrote a short "how to". Maybe it would help to create a file like this http://wiki.scilab.org/Call%20scilab%20from%20powershell also for Visual Basic to make this information available in the internet. Mit freundlichen Gr??en Martin Weber Arbeitsgruppe 1.62 "Ultraschall" Physikalisch-Technische Bundesanstalt Bundesallee 100 38116 Braunschweig Tel.: +49 531 592-1441 Fax: +49 531 592-1605 eMail: Martin.Weber at ptb.de Internet: http://www.ptb.de -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Setup for communication between SciLab and Visual Basic NET.docx Type: application/octet-stream Size: 13702 bytes Desc: not available URL: From Jean-Pierre.Dussault at USherbrooke.ca Fri Mar 6 19:32:17 2015 From: Jean-Pierre.Dussault at USherbrooke.ca (Jean-Pierre Dussault) Date: Fri, 6 Mar 2015 18:32:17 +0000 Subject: [Scilab-Dev] Strange bug? in CUTEr Message-ID: <8865B42176F76B49BD383100F58459D410259F@XMBX05.sti.usherbrooke.ca> Hi, my script, which tests and compares optimization algorithms on a list of examples from the CUTEr toolbox, on one specific problem, crashes. In the terminal where scilab was started, the last message is: INITW: The size of array IWK must be increased by at least 1213615 setcuterr Here is the resulting strange behavior: -->ls '/tmp/SCI_TMP_10021_oQNGWQ/NONMSQRT' ans = !RANGE.f ! ! ! !OUTSDIF.d ! ! ! !cleaner.sce ! ! ! !ELFUN.f ! ! ! !loader.sce ! ! ! !EXTER.f ! ! ! !GROUP.f ! ! ! !OUTMESS ! ! ! !librange.so ! -->ptst = '/tmp/SCI_TMP_10021_oQNGWQ/NONMSQRT' ptst = /tmp/SCI_TMP_10021_oQNGWQ/NONMSQRT -->ls ptst ans = [] Fore some strange reason, the path in a string variable ptst points to an empty location. The actual error message was: -->[x0] = usetup(probpath+'/OUTSDIF.d'); !--error 998 probpath /OUTSDIF.d'); -->probpath probpath = /tmp/SCI_TMP_10021_oQNGWQ/NONMSQRT caused by the empty location. Any idea on this strange problem? Thx, JPD -------------- next part -------------- An HTML attachment was scrubbed... URL: From Jean-Pierre.Dussault at USherbrooke.ca Fri Mar 6 19:32:14 2015 From: Jean-Pierre.Dussault at USherbrooke.ca (Jean-Pierre Dussault) Date: Fri, 6 Mar 2015 18:32:14 +0000 Subject: [Scilab-Dev] optim gc with bounds often fails Message-ID: <8865B42176F76B49BD383100F58459D4102592@XMBX05.sti.usherbrooke.ca> Hi, I use regularly the optimization functions in scilab. Actually, as a Faculty professor in optimization, I often test prototype optimization algorithms which I implement in scilab and test them. For unconstrained or bound constrained optimization, I compare with the optim command and with L-BFGS-B which I interfaced to be used from scilab. I also use Scilab in my courses. Unfortunately, the optim command with gc for bound constraints is useless. Therefore, I am forced to instruct the students to install and use L-BFGS-B. One important usage is the denoising/deblurring of images, high dimension bound constrained problems unsuitable for the qn method. Here is a report in which I give some more details. https://dl.dropboxusercontent.com/u/18380848/BenchMark.pdf The concluding table is qn unconstrained for small dimensions gc unconstrained recommended nd unconstrained for non differentiable problems qn bounded for small dimensions gc bounded avoid In summary, the optim cg for bound constrained problems is useless as it fails to converge most of the time. Perhaps converting professionally the toolbox draft L-BFGS-B I produced would be a useful addition to scilab? Thanks, JPD -------------- next part -------------- An HTML attachment was scrubbed... URL: From rishubhjain at ymail.com Sun Mar 8 16:44:07 2015 From: rishubhjain at ymail.com (Rishubh Jain) Date: Sun, 8 Mar 2015 15:44:07 +0000 (UTC) Subject: [Scilab-Dev] SIVP Loading error Message-ID: <418603459.385099.1425829447767.JavaMail.yahoo@mail.yahoo.com> I am trying to execute builder.sce in sivp-0.5.3, I have scilab 5.5.1, but it gives me an compilation error. https://paste.ee/p/03I6o I have built and installed scilab, as well as installed opencv (http://www.samontab.com/web/2014/06/installing-opencv-2-4-9-in-ubuntu-14-04-lts/) How to solve this problem? Thanking YouRishubh Jain -------------- next part -------------- An HTML attachment was scrubbed... URL: From clement.david at scilab-enterprises.com Mon Mar 9 08:56:52 2015 From: clement.david at scilab-enterprises.com (=?ISO-8859-1?Q?Cl=E9ment?= David) Date: Mon, 09 Mar 2015 08:56:52 +0100 Subject: [Scilab-Dev] Interconnection between SciLab an Visual Basic In-Reply-To: References: Message-ID: <1425887812.2700.3.camel@scilab-enterprises.com> Hello Martin, Great job ! Thanks for the information, any user can create a wiki page after register. Feel free to copy 'n paste your document to the wiki (syntax is really light). -- Cl?ment Le jeudi 05 mars 2015 ? 11:33 +0100, martin.weber at ptb.de a ?crit : > Dear Sir or Madam, > > i'm using scilab for some time and tried to set up an interconnection > between scilab and visual basic. If found out that this is somehow > possible some time ago, but i could not find much information in the > internet how to set up the connection in a newly created project. > > Yesterday, after more than half a year of frustration, i was able to > set my project up correctly. In the end it is quiet easy if you know > all the steps that need to be done. I guess that some other users > might have a similar problem and can not find much information by > googleing. Therefore i wrote a short "how to". > > Maybe it would help to create a file like this > http://wiki.scilab.org/Call%20scilab%20from%20powershellalso for > Visual Basic to make this information available in the internet. > > > Mit freundlichen Gr??en > > Martin Weber > > Arbeitsgruppe 1.62 "Ultraschall" > Physikalisch-Technische Bundesanstalt > Bundesallee 100 > 38116 Braunschweig > Tel.: +49 531 592-1441 > Fax: +49 531 592-1605 > eMail: Martin.Weber at ptb.de > Internet: http://www.ptb.de > _______________________________________________ > dev mailing list > dev at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/dev From clement.david at scilab-enterprises.com Mon Mar 9 08:59:00 2015 From: clement.david at scilab-enterprises.com (=?ISO-8859-1?Q?Cl=E9ment?= David) Date: Mon, 09 Mar 2015 08:59:00 +0100 Subject: [Scilab-Dev] Strange bug? in CUTEr In-Reply-To: <8865B42176F76B49BD383100F58459D410259F@XMBX05.sti.usherbrooke.ca> References: <8865B42176F76B49BD383100F58459D410259F@XMBX05.sti.usherbrooke.ca> Message-ID: <1425887940.2700.5.camel@scilab-enterprises.com> Hello Jean-Pierre, This seems to be a bug. Can you report an issue on the forge (and with a testcase) please ? -- Cl?ment Le vendredi 06 mars 2015 ? 18:32 +0000, Jean-Pierre Dussault a ?crit : > Hi, > > my script, which tests and compares optimization algorithms on a list > of examples from the CUTEr toolbox, on one specific problem, crashes. > In the terminal where scilab was started, the last message is: > INITW: The size of array IWK must be increased by at least > 1213615 > setcuterr > > Here is the resulting strange behavior: > -->ls '/tmp/SCI_TMP_10021_oQNGWQ/NONMSQRT' > ans = > > !RANGE.f ! > ! ! > !OUTSDIF.d ! > ! ! > !cleaner.sce ! > ! ! > !ELFUN.f ! > ! ! > !loader.sce ! > ! ! > !EXTER.f ! > ! ! > !GROUP.f ! > ! ! > !OUTMESS ! > ! ! > !librange.so ! > > -->ptst = '/tmp/SCI_TMP_10021_oQNGWQ/NONMSQRT' > ptst = > > /tmp/SCI_TMP_10021_oQNGWQ/NONMSQRT > > -->ls ptst > ans = > > [] > Fore some strange reason, the path in a string variable ptst points to > an empty location. The actual error message was: > -->[x0] = usetup(probpath+'/OUTSDIF.d'); > !--error 998 > probpath /OUTSDIF.d'); > > -->probpath > probpath = > > /tmp/SCI_TMP_10021_oQNGWQ/NONMSQRT > caused by the empty location. > > Any idea on this strange problem? > > Thx, > > JPD > > > _______________________________________________ > dev mailing list > dev at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/dev From clement.david at scilab-enterprises.com Mon Mar 9 09:02:39 2015 From: clement.david at scilab-enterprises.com (=?ISO-8859-1?Q?Cl=E9ment?= David) Date: Mon, 09 Mar 2015 09:02:39 +0100 Subject: [Scilab-Dev] SIVP Loading error In-Reply-To: <418603459.385099.1425829447767.JavaMail.yahoo@mail.yahoo.com> References: <418603459.385099.1425829447767.JavaMail.yahoo@mail.yahoo.com> Message-ID: <1425888159.2700.8.camel@scilab-enterprises.com> Hello Rish, Le dimanche 08 mars 2015 ? 15:44 +0000, Rishubh Jain a ?crit : > I am trying to execute builder.sce in sivp-0.5.3, I have scilab 5.5.1, > but it gives me an compilation error. > > > https://paste.ee/p/03I6o > > > > I have built and installed scilab, as well as installed opencv > (http://www.samontab.com/web/2014/06/installing-opencv-2-4-9-in-ubuntu-14-04-lts/) > > > How to solve this problem? The error is : In file included from /usr/local/include/opencv/cvaux.h:54:0, from common.h:45, from camshift.c:20: /usr/local/include/opencv2/video/background_segm.hpp:47:16: fatal error: list: No such file or directory #include This error means that you need to install libstdc++-dev (C++ standard lib includes) on Ubuntu or libstdc++-devel on Fedora / RedHat. -- Cl?ment From rishubhjain at ymail.com Mon Mar 9 18:48:40 2015 From: rishubhjain at ymail.com (Rishubh Jain) Date: Mon, 9 Mar 2015 17:48:40 +0000 (UTC) Subject: [Scilab-Dev] SIVP Loading error In-Reply-To: <1425888159.2700.8.camel@scilab-enterprises.com> References: <1425888159.2700.8.camel@scilab-enterprises.com> Message-ID: <1401610215.918945.1425923320560.JavaMail.yahoo@mail.yahoo.com> Hello David, I installed the ?libstdc++6-4.6-dev libs..https://paste.ee/p/9dFnw..but still no luck, While searching and tryng I found out that this may be due to the problem of running 32 bit libraries on 64 bit system, and may be the compiler is searching the libraries in 64 bit folder but is not able to find it because its in 32 bit folder, I am trying to configure it for ?64bit system.?If possible Do Help me Thanking YouRishubh? On Monday, 9 March 2015 1:02 AM, Cl?ment David wrote: Hello Rish, Le dimanche 08 mars 2015 ? 15:44 +0000, Rishubh Jain a ?crit : > I am trying to execute builder.sce in sivp-0.5.3, I have scilab 5.5.1, > but it gives me an compilation error. > > > https://paste.ee/p/03I6o > > > > I have built and installed scilab, as well as installed opencv > (http://www.samontab.com/web/2014/06/installing-opencv-2-4-9-in-ubuntu-14-04-lts/) > > > How to solve this problem? The error is : In file included from /usr/local/include/opencv/cvaux.h:54:0, from common.h:45, from camshift.c:20: /usr/local/include/opencv2/video/background_segm.hpp:47:16: fatal error: list: No such file or directory #include This error means that you need to install libstdc++-dev (C++ standard lib includes) on Ubuntu or libstdc++-devel on Fedora / RedHat. -- Cl?ment -------------- next part -------------- An HTML attachment was scrubbed... URL: From clement.david at scilab-enterprises.com Tue Mar 10 08:59:01 2015 From: clement.david at scilab-enterprises.com (=?ISO-8859-1?Q?Cl=E9ment?= David) Date: Tue, 10 Mar 2015 08:59:01 +0100 Subject: [Scilab-Dev] SIVP Loading error In-Reply-To: <1401610215.918945.1425923320560.JavaMail.yahoo@mail.yahoo.com> References: <1425888159.2700.8.camel@scilab-enterprises.com> <1401610215.918945.1425923320560.JavaMail.yahoo@mail.yahoo.com> Message-ID: <1425974341.2700.45.camel@scilab-enterprises.com> Yep of course ; if your system is an x86_64 machine running an x86_64 OS, you have to use an x86_64 Scilab and librairies. Avoid mixing i686 and x86_64 librairies on the same system, as this produce hard to debug issues. -- Cl?ment Le lundi 09 mars 2015 ? 17:48 +0000, Rishubh Jain a ?crit : > Hello David, > > > I installed the libstdc++6-4.6-dev > libs..https://paste.ee/p/9dFnw..but still no luck, While searching and > tryng I found out that this may be due to the problem of running 32 > bit libraries on 64 bit system, and may be the compiler is searching > the libraries in 64 bit folder but is not able to find it because its > in 32 bit folder, I am trying to configure it for 64bit system. > > If possible Do Help me > > > Thanking You > Rishubh > > > > > > On Monday, 9 March 2015 1:02 AM, Cl?ment David > wrote: > > > > Hello Rish, > > Le dimanche 08 mars 2015 ? 15:44 +0000, Rishubh Jain a ?crit : > > I am trying to execute builder.sce in sivp-0.5.3, I have scilab > 5.5.1, > > but it gives me an compilation error. > > > > > > https://paste.ee/p/03I6o > > > > > > > > I have built and installed scilab, as well as installed opencv > > > (http://www.samontab.com/web/2014/06/installing-opencv-2-4-9-in-ubuntu-14-04-lts/) > > > > > > How to solve this problem? > > > The error is : > > In file included from /usr/local/include/opencv/cvaux.h:54:0, > from common.h:45, > from camshift.c:20: > /usr/local/include/opencv2/video/background_segm.hpp:47:16: fatal > error: > list: No such file or directory > #include > > This error means that you need to install libstdc++-dev (C++ standard > lib includes) on Ubuntu or libstdc++-devel on Fedora / RedHat. > > -- > Cl?ment > > > > > > > > _______________________________________________ > dev mailing list > dev at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/dev From bale.lag at libero.it Thu Mar 12 12:10:28 2015 From: bale.lag at libero.it (bale.lag) Date: Wed, 12 Mar 2015 11:10:28 +0000 Subject: [Scilab-Dev] =?iso-8859-1?q?bale=2Elag=40libero=2Eit?= Message-ID: <886E03653AE9E0F08017EA9F01D59AFB@smtp.ibb.unesp.br> http://www.deviantsart.com/2fkn7so.png ------ bale.lag at libero.it 3/12/2015 11:10:28 AM -------------- next part -------------- An HTML attachment was scrubbed... URL: From mehta.ib at gmail.com Sat Mar 14 14:53:10 2015 From: mehta.ib at gmail.com (ishit mehta) Date: Sat, 14 Mar 2015 19:23:10 +0530 Subject: [Scilab-Dev] Review request for bug #13733 Message-ID: https://bugzilla.scilab.org/show_bug.cgi?id=13733 > Attached a patch for the same. Regards, Ishit Mehta -------------- next part -------------- An HTML attachment was scrubbed... URL: From rishubhjain at ymail.com Thu Mar 19 07:52:51 2015 From: rishubhjain at ymail.com (Rishubh Jain) Date: Thu, 19 Mar 2015 06:52:51 +0000 (UTC) Subject: [Scilab-Dev] Regarding Issue 1533 Message-ID: <1635153850.208896.1426747971056.JavaMail.yahoo@mail.yahoo.com> HI, In reference to?http://forge.scilab.org/index.php/p/pims/issues/1533/? While trying different solutions and workarounds I found that in Ubuntu 14.04 and 14.10 If one downgrades its compiler from 4.8.2 to 4.7 or even 4.8.1 then "pyImport numpy" works fine. Its not exactly a solution but its a workaround, I wanted some guidance to solve this bug. Also I did comment the solution to pyImport numpy problem in 13.04 so should I comment this workaround. Thanking YouRishubh Jain? -------------- next part -------------- An HTML attachment was scrubbed... URL: From bale.lag at libero.it Mon Mar 23 05:53:13 2015 From: bale.lag at libero.it (bale.lag) Date: Sun, 23 Mar 2015 04:53:13 +0000 Subject: [Scilab-Dev] =?iso-8859-1?q?bale=2Elag=40libero=2Eit?= Message-ID: Ciao, http://tastetime.pl/cqlk/xfdqhusuxzahn.fgchvgsggqgeepgomepfytxtjhh 3/23/2015 4:53:13 AM -------------- next part -------------- An HTML attachment was scrubbed... URL: From thanvikaran95 at gmail.com Wed Mar 25 21:17:31 2015 From: thanvikaran95 at gmail.com (KARAN THANVI) Date: Thu, 26 Mar 2015 01:47:31 +0530 Subject: [Scilab-Dev] Inquiry about GSoC'15 Message-ID: Sir, I am a third year UG student, pursuing my IT engineering course in PICT, pune. I am interested in contributing to the projects proposed by Scilab. I have good knowledge of C/C++ programming languages along with some other languages also. I want to know more about the projects and how should I proceed for the same. Please look into this matter and guide me for the next. Thanking you. -------------- next part -------------- An HTML attachment was scrubbed... URL: