Re: [Scilab-users] display of complex/not real numbers, again

2019-09-18 Thread Stéphane Mottelet
Hello, Le 13/09/2019 à 12:51, Stéphane Mottelet a écrit : Le 13/09/2019 à 12:45, Samuel Gougeon a écrit : Hello, To me, as already claimed there , it's clear that, for a complex-e

[Scilab-users] Re : Re: display of complex/not real numbers, again

2019-09-18 Thread sgougeon
Le 18/09/2019 à 13:50, Stéphane Mottelet a écrit : > >> Another regression very close to this one, but with real numbers >> display, would deserve the same care : >> Scilab 5: >> -->[1e30 1e-30] >>  ans  = >>     1.000D+30    1.000D-30 >> >> Scilab 6: >> --> [1e30 1e-30] >>  ans  = >>    1.000D+30

Re: [Scilab-users] Re : Re: display of complex/not real numbers, again

2019-09-18 Thread Stéphane Mottelet
Le 18/09/2019 à 14:54, sgoug...@free.fr a écrit : Le 18/09/2019 à 13:50, Stéphane Mottelet a écrit : Another regression very close to this one, but with real numbers display, would deserve the same care : Scilab 5: -->[1e30 1e-30]  ans  =     1.000D+30    1.000D-30 Scilab 6: --> [1e30 1e-30]

[Scilab-users] code coverage

2019-09-18 Thread kjubo
Dear all, I am not able to find out, how to make a profiling on functions, if they are nested. consider this example: //SCILAB CODE START clc,clear function fx = sub1(x1,x2) fx = x1+x2 fx = fx/x2 endfunction function fx = sub2(x1,x2) fx = sub1(x1,x2) endfunction nrun = 1e4 covStart("