Re: [Scilab-users] code coverage

2019-09-19 Thread Jakub Kopac
After trials found the problem, bug reported http://bugzilla.scilab.org/show_bug.cgi?id=16193 BR J.K. št 19. 9. 2019 o 10:05 Federico Miyara napísal(a): > > What do you mean by a profiling on functions? > > Federico Miyara > > On 18/09/2019 16:49, kjubo wrote: > > Dear all, > > I am not able t

Re: [Scilab-users] code coverage

2019-09-19 Thread Federico Miyara
What do you mean by a profiling on functions? Federico Miyara On 18/09/2019 16:49, kjubo wrote: 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 f

[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("