Re: [Scilab-users] Scilab GUI 6 crash

2017-03-28 Thread Michael Benguigui
es / result of '-->jre_path()' )? > > Regards, > Paul > > On 03/16/2017 11:14 AM, Michael Benguigui wrote: > > jimport java.lang.ProcessBuilder; > jimport java.util.ArrayList; > cmd = ArrayList.new(); > jinvoke(cmd,'add','echo') > jinvoke(cmd,'add','''''

Re: [Scilab-users] Scilab GUI 6 crash

2017-03-29 Thread Michael Benguigui
Ok Paul, thanks again. Do you have in mind a temporary work around for this issue, that I could add in my dev.. Or this can only be tackled on your side..? Regards Michael 2017-03-28 13:46 GMT+02:00 Michael Benguigui < michael.bengui...@activeeon.com>: > Dear Paul, thank you for your l

[Scilab-users] Scilab GUI 6 crash

2017-03-16 Thread Michael Benguigui
crash! in video: https://drive.google.com/file/d/0B1xq0JSJQm07VGZSMGEyaVZyTWM/view?usp=sharing Any idea, workaround? Regards Michael -- Michael Benguigui, Activeeon +33 6 304 37 37 0 https://fr.linkedin.com/in/micha%C3%ABl-benguigui-23a85921 skype: michael.bengui...@hotmail.fr

[Scilab-users] Sicilab 6 GUI crashs

2017-04-05 Thread Michael Benguigui
Dear Scilab team, Could you just tell me if you have a temporary work around concerning this issue..? Regards Michael --- Hi, to reproduce it: Create a sci file (test.sci) with the following instructions (*): jimport java.lang.ProcessBuilder; jimport

Re: [Scilab-users] Matlab vs Scilab perf

2017-03-02 Thread Michael Benguigui
> obviously better for this kind of explicit loop because it uses JIT > compilation. > > S. > > Le 02/03/2017 à 16:41, Michael Benguigui a écrit : > > Sorry .. for sure! (and thank you for your quick answer) > Scilab 6.0.0 > > ++ > Michael > > 2017-03-02 16:33 GMT+0

Re: [Scilab-users] Scilab 6.0 + starting a new jvm + evstr('1+1; ') => crash

2017-03-05 Thread Michael Benguigui
And sorry for the wrong title since there is no link with a "new started jvm".. my process simply executing "echo". Regards Michael 2017-03-05 21:12 GMT+01:00 Michael Benguigui < michael.bengui...@activeeon.com>: > Hi all, > > I managed to make a simple

Re: [Scilab-users] Scilab 6.0 + starting a new jvm + evstr('1+1; ') => crash

2017-03-05 Thread Michael Benguigui
n <sgoug...@free.fr>: > Hello Michael, > > Again, it is hard or even impossible to help or/and debug without having > any true complete (and if possible minimal) way to run an actual code and > reproduce the issue. > > Le 03/03/2017 à 14:40, Michael Benguigui a écrit : > &

Re: [Scilab-users] {EXT} Re: Matlab vs Scilab perf

2017-03-03 Thread Michael Benguigui
ying, disclosure or distribution of the material in this > e-mail is strictly forbidden. > ___ > users mailing list > users@lists.scilab.org > http://lists.scilab.org/mailman/listinfo/users > -- Michael Benguigui, Activeeon +33 6 3

[Scilab-users] Scilab 6.0 + starting a new jvm + evstr('1+1; ') => crash

2017-03-03 Thread Michael Benguigui
Hi all, As a Scilab user, i am facing difficulties during the Scilab 6 adaptation of my project. I did my best to isolate the pb. This code works with Scilab 5.5. At some point of my code, I have: >pair = jinvoke(deployer,'deployOrLookup'); >evstr('1+1');// crash! >// or >//

[Scilab-users] Matlab vs Scilab perf

2017-03-02 Thread Michael Benguigui
Hi all, As a Scilab user, I am currently fighting to reach Matlab performance..My current scilab program takes 4x more than my matlab's vesion. Here are some instructions requiring some optimizations.. If you have an idea... thanks a lot! All times are cumulative times after the execution

Re: [Scilab-users] Matlab vs Scilab perf

2017-03-02 Thread Michael Benguigui
Sorry .. for sure! (and thank you for your quick answer) Scilab 6.0.0 ++ Michael 2017-03-02 16:33 GMT+01:00 Stéphane Mottelet <stephane.motte...@utc.fr>: > Hello, > > Can you precise your Scilab version ? 5.5.2 ? 6.0.0 ? Or another one... > > S. > > Le 02/03/2017

[Scilab-users] jinvoke + new ProcessBuilder(..) + evstr('1+1; ') => Scilab 6 crash

2017-03-08 Thread Michael Benguigui
Hi all (i udpated the mail title), I managed to make a simpler program to reproduce the pb. Here it is A java class: public class MyEchoClass { public static void execEcho () throws IOException { ArrayList cmd = new ArrayList(); cmd.add("echo");