From rouxph.22 at gmail.com Fri Jul 1 10:41:59 2016 From: rouxph.22 at gmail.com (philippe) Date: Fri, 1 Jul 2016 10:41:59 +0200 Subject: [Scilab-users] overloading concat "[ ]" operators Message-ID: Hi, I have created a simple data structure to handle "big integers" . It is based on scilab tlist and named "bigint" . I have overloaded basic unary/binary operators for bigint (like +,*,-,/,^,==,<,>,... ) : -->x=bigint('123456789987654321') x = 123456789987654321 -->y=bigint('987654321123456789') y = 987654321123456789 -->z=x-y z = -864197531135802468 but now I want to create matrix of bigint so I need to create functions like %bigint_c_bigint and %bigint_f_bigint . I try using "cell" It's not exactly what I was expecting : matrix entries are displayed as tlist instead of bigint display (modified via %bigint_p ) -->T=cell() T = [] -->T(1).entries=x T = tlist(["bigint","rep","signe"],[7654321;5678998;1234],1) -->T(2).entries=y T = !tlist(["bigint","rep","signe"],[7654321;5678998;1234],1) ! ! ! !tlist(["bigint","rep","signe"],[3456789;5432112;9876],1) ! -->T(3).entries=z T = !tlist(["bigint","rep","signe"],[7654321;5678998;1234],1) ! ! ! !tlist(["bigint","rep","signe"],[3456789;5432112;9876],1) ! ! ! !tlist(["bigint","rep","signe"],[5802468;9753113;8641],-1) ! how could I get a display like -->T T = ! 123456789987654321 ! ! ! ! 987654321123456789 ! ! ! ! -864197531135802468 ! actually I only get -->T.entries ans = ans(1) 123456789987654321 ans(2) 987654321123456789 ans(3) -864197531135802468 Philippe From perrichon.pierre at wanadoo.fr Fri Jul 1 11:24:53 2016 From: perrichon.pierre at wanadoo.fr (Perrichon) Date: Fri, 1 Jul 2016 11:24:53 +0200 Subject: [Scilab-users] Nightly build w10 x64 5.5.2 or 6.0.0 b2 - Confusion between versions Message-ID: <002901d1d37a$6d366fd0$47a34f70$@wanadoo.fr> Hello, Today, the Nightly Buid server delivers the same version scilab-master-1467282800_x64.exe, and display 6.0.0 when executing ver() instruction. So it creates a full confusion to distinguish bugs from 5.5.2 or 6.0.0, or appreciates improvments. Sincerely Pierre -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.gif Type: image/gif Size: 906 bytes Desc: not available URL: From sgougeon at free.fr Fri Jul 1 11:33:52 2016 From: sgougeon at free.fr (Samuel Gougeon) Date: Fri, 1 Jul 2016 11:33:52 +0200 Subject: [Scilab-users] overloading concat "[ ]" operators In-Reply-To: References: Message-ID: <57763900.1030005@free.fr> Hello Philippe, You shall use a mlist() instead of a tlist. Have a look at https://help.scilab.org/docs/6.0.0/en_US/mlist.html mlist are array-oriented. BR Samuel Le 01/07/2016 10:41, philippe a ?crit : > Hi, > > I have created a simple data structure to handle "big integers" . It is > based on scilab tlist and named "bigint" . I have overloaded basic > unary/binary operators for bigint (like +,*,-,/,^,==,<,>,... ) : > > > > -->x=bigint('123456789987654321') > x = > > > 123456789987654321 > > -->y=bigint('987654321123456789') > y = > > > 987654321123456789 > > -->z=x-y > z = > > > -864197531135802468 > > > > but now I want to create matrix of bigint so I need to create > functions like %bigint_c_bigint and %bigint_f_bigint . I try using > "cell" It's not exactly what I was expecting : matrix entries are > displayed as tlist instead of bigint display (modified via %bigint_p ) > > > > -->T=cell() > T = > > > [] > > > > -->T(1).entries=x > T = > > > tlist(["bigint","rep","signe"],[7654321;5678998;1234],1) > > -->T(2).entries=y > T = > > > !tlist(["bigint","rep","signe"],[7654321;5678998;1234],1) ! > ! ! > !tlist(["bigint","rep","signe"],[3456789;5432112;9876],1) ! > > > -->T(3).entries=z > T = > > > !tlist(["bigint","rep","signe"],[7654321;5678998;1234],1) ! > ! ! > !tlist(["bigint","rep","signe"],[3456789;5432112;9876],1) ! > ! ! > !tlist(["bigint","rep","signe"],[5802468;9753113;8641],-1) ! > > > > how could I get a display like > > > -->T > T = > > > ! 123456789987654321 ! > ! ! > ! 987654321123456789 ! > ! ! > ! -864197531135802468 ! > > > > actually I only get > > -->T.entries > ans = > > > ans(1) > > > 123456789987654321 > > ans(2) > > > 987654321123456789 > > ans(3) > > > -864197531135802468 > > > > Philippe > > _______________________________________________ > users mailing list > users at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/users > From contact at pierre-vuillemin.fr Fri Jul 1 11:17:46 2016 From: contact at pierre-vuillemin.fr (Pierre Vuillemin) Date: Fri, 01 Jul 2016 11:17:46 +0200 Subject: [Scilab-users] overloading concat "[ ]" operators In-Reply-To: References: Message-ID: <6ac8f3cc7bd5c8e4e81f1aa84a08b245@pierre-vuillemin.fr> Hi Philippe, You can create another object, a matrix of bing int that stacks your bigint in a list, i.e. x = tlist(["bigint","rep","signe"],[7654321;5678998;1234],1) y = tlist(["bigint","rep","signe"],[3456789;5432112;9876],1) X = tlist(["mbigint","entries"],list(x,y)) Then you can overload the display for "mbigint" for instance with function %mbigint_p(e) str = "" for i = 1:length(e.entries) for j =length(e.entries(i).rep):-1:1 str = sprintf("%s%d",str,e.entries(i).rep(j)) end str = str +"\n" end printf(str) endfunction If you want to make matrix (not only vectors), then you need to add the size of the matrix as an attribute of "mbigint" and reshape the display accordingly. Pierre. Le 01.07.2016 10:41, philippe a ?crit?: > Hi, > > I have created a simple data structure to handle "big integers" . It > is > based on scilab tlist and named "bigint" . I have overloaded basic > unary/binary operators for bigint (like +,*,-,/,^,==,<,>,... ) : > > > > -->x=bigint('123456789987654321') > x = > > > 123456789987654321 > > -->y=bigint('987654321123456789') > y = > > > 987654321123456789 > > -->z=x-y > z = > > > -864197531135802468 > > > > but now I want to create matrix of bigint so I need to create > functions like %bigint_c_bigint and %bigint_f_bigint . I try using > "cell" It's not exactly what I was expecting : matrix entries are > displayed as tlist instead of bigint display (modified via %bigint_p ) > > > > -->T=cell() > T = > > > [] > > > > -->T(1).entries=x > T = > > > tlist(["bigint","rep","signe"],[7654321;5678998;1234],1) > > -->T(2).entries=y > T = > > > !tlist(["bigint","rep","signe"],[7654321;5678998;1234],1) ! > ! ! > !tlist(["bigint","rep","signe"],[3456789;5432112;9876],1) ! > > > -->T(3).entries=z > T = > > > !tlist(["bigint","rep","signe"],[7654321;5678998;1234],1) ! > ! ! > !tlist(["bigint","rep","signe"],[3456789;5432112;9876],1) ! > ! ! > !tlist(["bigint","rep","signe"],[5802468;9753113;8641],-1) ! > > > > how could I get a display like > > > -->T > T = > > > ! 123456789987654321 ! > ! ! > ! 987654321123456789 ! > ! ! > ! -864197531135802468 ! > > > > actually I only get > > -->T.entries > ans = > > > ans(1) > > > 123456789987654321 > > ans(2) > > > 987654321123456789 > > ans(3) > > > -864197531135802468 > > > > Philippe > > _______________________________________________ > users mailing list > users at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/users From perrichon.pierre at wanadoo.fr Sat Jul 2 18:50:32 2016 From: perrichon.pierre at wanadoo.fr (Perrichon) Date: Sat, 2 Jul 2016 18:50:32 +0200 Subject: [Scilab-users] 2016.07.02 - Double click on zcos ou sce files open Scilab GUI but not Xcos or Scinotes Message-ID: <000901d1d481$d98ea910$8cabfb30$@wanadoo.fr> Dear, When I click a zcos file or sce file, the Scilab GUI opens, but not Xcos for zcos ou Scinotes for sce files. It was working 1 month ago, but now I can't do anything, even if I re-install Scilab 5.5.2 x64 W10 Note : others Scilab version are installed on my machine : Scilab 5.5.2 x32 and x64, Scilab 6.0.0 b2 x32 and x64. But the problem is persistent if I suppress all versions and re-install only 5.5.2 x64. Other strange thing : Scilab seems memorize its last options in the GUI (last directory access for example), even if I re-install the Scilab version. Where is it memorized (which file and which directory ?) See also bug #14651 for attached files Sincerely Pierre -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.gif Type: image/gif Size: 906 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image004.jpg Type: image/jpeg Size: 39121 bytes Desc: not available URL: From sgougeon at free.fr Sat Jul 2 21:16:54 2016 From: sgougeon at free.fr (Samuel Gougeon) Date: Sat, 2 Jul 2016 21:16:54 +0200 Subject: [Scilab-users] 2016.07.02 - Double click on zcos ou sce files open Scilab GUI but not Xcos or Scinotes In-Reply-To: <000901d1d481$d98ea910$8cabfb30$@wanadoo.fr> References: <000901d1d481$d98ea910$8cabfb30$@wanadoo.fr> Message-ID: <57781326.1060708@free.fr> Hello Pierre, Le 02/07/2016 18:50, Perrichon a ?crit : > > Dear, > > When I click a zcos file or sce file, > . Where from? The OS File browser, or the Scilab File browser? > > the Scilab GUI opens, but not Xcos for zcos ou Scinotes for sce files. > . From the Windows File browser, Scilab never did anything else for me. When defining actions to be performed when clicking, may be there is a way to specify launching options (such as -e scinotes($1) or something similar). Anyway, the main issue is that i don't want a new Scilab session for each .sci clicked from the OS. By the way, dragging a file from the OS file browser to opened Scinotes or to Scilab's console either edit it or exec it. > It was working 1 month ago, but now I can't do anything, even if I > re-install Scilab 5.5.2 x64 W10 > > Note : others Scilab version are installed on my machine : Scilab > 5.5.2 x32 and x64, Scilab 6.0.0 b2 x32 and x64. > > But the problem is persistent if I suppress all versions and > re-install only 5.5.2 x64. > > Other strange thing : Scilab seems memorize its last options in the > GUI (last directory access for example), even if I re-install the > Scilab version. > > Where is it memorized (which file and which directory ?) > . You may have a look at the various configuration files.xml in SCIHOME > > See also bug #14651 for attached files > > Sincerely > > Pierre > > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/gif Size: 906 bytes Desc: not available URL: From oferpade at 013net.net Sun Jul 3 17:58:21 2016 From: oferpade at 013net.net (Offe rPade) Date: Sun, 03 Jul 2016 18:58:21 +0300 Subject: [Scilab-users] plot2d question Message-ID: <000301d1d543$b9228f30$2b67ad90$@013net.net> I could not use plot for drawing a semilog graph. So I am using plot2d, but if I want the curve to have both linestyle and markers, I have to draw the curve Twice, like: Plot2d(x,y,1,logflag='ln') for the line And then: Plot2d(x,y,-5,logflag='ln') for the markers. It is very cumbersome. Does anyone know a simple way to do it? Offer -------------- next part -------------- An HTML attachment was scrubbed... URL: From jrafaelbguerra at hotmail.com Sun Jul 3 20:23:31 2016 From: jrafaelbguerra at hotmail.com (Rafael Guerra) Date: Sun, 3 Jul 2016 20:23:31 +0200 Subject: [Scilab-users] plot2d question In-Reply-To: <000301d1d543$b9228f30$2b67ad90$@013net.net> References: <000301d1d543$b9228f30$2b67ad90$@013net.net> Message-ID: Offer, Would this be ok: x=(1:10)'; y=log(x); plot2d([x x],[y y],[1,-5],logflag='ln') Regards, Rafael From: users [mailto:users-bounces at lists.scilab.org] On Behalf Of Offe rPade Sent: Sunday, July 03, 2016 5:58 PM To: users at lists.scilab.org Subject: [Scilab-users] plot2d question I could not use plot for drawing a semilog graph. So I am using plot2d, but if I want the curve to have both linestyle and markers, I have to draw the curve Twice, like: Plot2d(x,y,1,logflag='ln') for the line And then: Plot2d(x,y,-5,logflag='ln') for the markers. It is very cumbersome. Does anyone know a simple way to do it? Offer -------------- next part -------------- An HTML attachment was scrubbed... URL: From rouxph.22 at gmail.com Sun Jul 3 22:40:04 2016 From: rouxph.22 at gmail.com (philippe) Date: Sun, 3 Jul 2016 22:40:04 +0200 Subject: [Scilab-users] overloading concat "[ ]" operators In-Reply-To: <57763900.1030005@free.fr> References: <57763900.1030005@free.fr> Message-ID: <57797824.9020502@gmail.com> Le 01/07/2016 11:33, Samuel Gougeon a ?crit : > Hello Philippe, > You shall use a mlist() instead of a tlist. > Have a look at https://help.scilab.org/docs/6.0.0/en_US/mlist.html > mlist are array-oriented. thanks Samuel, I will create mbigint as a mlist containing the cell of bigint and a string matrix of the same size (I already have a bigint2str function) : %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% x=bigint(123456789); y=bigint(987654321); z=x-y; T=cell() T(1,1).entries=x; T(1,2).entries=y; T(2,1).entries=z; T(2,2).entries=bigint(0); M=mlist(['mbigint','display','value'],.. [bigint2str(x) bigint2str(y); bigint2str(z) '0' ],T) %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% The display for mbigint is just M.display %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function %mbigint_p(M) disp(M.display) endfunction -->M M = !123456789 987654321 ! ! ! !-864197532 0 ! %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% the extraction for mbigint is exactly as in the help page : %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function r=%mbigint_e(varargin) M=varargin($) r=mlist(['mbigint','display','value'],.. M.display(varargin(1:$-1)),M.value(varargin(1:$-1))) endfunction -->M(2,:) ans = !-864197532 0 ! -->M(:,1) ans = !123456789 ! ! ! !-864197532 ! %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% as well as insertion : %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function M=%mbigint_i_mbigint(varargin) M=varargin($) N=varargin($-1) M.value(varargin(1:$-2))=N.value M.display(varargin(1:$-2))=N.display endfunction -->M(1,1)=M(2,2) M = !0 987654321 ! ! ! !-864197532 0 ! %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% it remains to write %mbigint_c_mbigint and %mbigint_f_mbigint %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function M=%mbigint_c_mbigint(A,B) M=mlist(['mbigint','display','value'],.. [A.display B.display],.. [A.value B.value]) endfunction function M=%mbigint_f_mbigint(A,B) M=mlist(['mbigint','display','value'],.. [A.display;B.display],.. [A.value;B.value]) endfunction --> [M M] ans = !0 987654321 0 987654321 ! ! ! !-864197532 0 -864197532 0 ! --> [M;M] ans = !0 987654321 ! ! ! !-864197532 0 ! ! ! !0 987654321 ! ! ! !-864197532 0 ! %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Finally Samuel have you any idea for my previous question abou how to replace unix('sed ...') by a "scilab-only" command ;-) Philippe From rouxph.22 at gmail.com Sun Jul 3 22:42:13 2016 From: rouxph.22 at gmail.com (philippe) Date: Sun, 3 Jul 2016 22:42:13 +0200 Subject: [Scilab-users] overloading concat "[ ]" operators In-Reply-To: <6ac8f3cc7bd5c8e4e81f1aa84a08b245@pierre-vuillemin.fr> References: <6ac8f3cc7bd5c8e4e81f1aa84a08b245@pierre-vuillemin.fr> Message-ID: <577978A5.8020705@gmail.com> Le 01/07/2016 11:17, Pierre Vuillemin a ?crit : > > You can create another object, a matrix of bing int that stacks your > bigint in a list, i.e. Yes I've created another object but as an mlist as recommanded Samuel. Thanks for your help, Philippe From oferpade at 013net.net Sun Jul 3 23:26:59 2016 From: oferpade at 013net.net (Offe rPade) Date: Mon, 04 Jul 2016 00:26:59 +0300 Subject: [Scilab-users] plot2d question In-Reply-To: References: <000301d1d543$b9228f30$2b67ad90$@013net.net> Message-ID: <001a01d1d571$a1da6400$e58f2c00$@013net.net> Sorry Rafael It did not work. Thanks anyway From: users [mailto:users-bounces at lists.scilab.org] On Behalf Of Rafael Guerra Sent: Sunday, July 03, 2016 9:24 PM To: 'Users mailing list for Scilab' Subject: Re: [Scilab-users] plot2d question Offer, Would this be ok: x=(1:10)'; y=log(x); plot2d([x x],[y y],[1,-5],logflag='ln') Regards, Rafael From: users [mailto:users-bounces at lists.scilab.org] On Behalf Of Offe rPade Sent: Sunday, July 03, 2016 5:58 PM To: users at lists.scilab.org Subject: [Scilab-users] plot2d question I could not use plot for drawing a semilog graph. So I am using plot2d, but if I want the curve to have both linestyle and markers, I have to draw the curve Twice, like: Plot2d(x,y,1,logflag='ln') for the line And then: Plot2d(x,y,-5,logflag='ln') for the markers. It is very cumbersome. Does anyone know a simple way to do it? Offer -------------- next part -------------- An HTML attachment was scrubbed... URL: From sgougeon at free.fr Mon Jul 4 06:51:54 2016 From: sgougeon at free.fr (sgougeon at free.fr) Date: Mon, 4 Jul 2016 06:51:54 +0200 (CEST) Subject: [Scilab-users] plot2d question In-Reply-To: <000301d1d543$b9228f30$2b67ad90$@013net.net> Message-ID: <2080248709.557854637.1467607914700.JavaMail.root@zimbra75-e12.priv.proxad.net> >----- Mail original ----- >De: "Offe rPade" >?: users at lists.scilab.org >Envoy?: Dimanche 3 Juillet 2016 17:58:21 > >I could not use plot for drawing a semilog graph. So I am using plot2d, >but if I want the curve to have both linestyle and markers, >I have to draw the curve Twice, like: Sure not. One of the properties may be set independently after plotting, say the x-log flag: Use plot() as usual: clf t = 0:%pi/20:2*%pi; t(1) = []; plot(t,sin(t),'ro-.') // then ax = gca(); ax.log_flags = "ln"; // or simply // gca().log_flags = "ln"; with Scilab 6 // That's it >Plot2d(x,y,1,logflag=?ln?) for the line // beware about the capital: plot2d instead of Plot2d Samuel PS : see also http://bugzilla.scilab.org/14191 I will propose to implement the "ll".. etc flag as in plot([axes],["ln"],..), for Scilab 6. From oferpade at 013net.net Mon Jul 4 07:20:35 2016 From: oferpade at 013net.net (Offe rPade) Date: Mon, 04 Jul 2016 08:20:35 +0300 Subject: [Scilab-users] plot2d question In-Reply-To: <2080248709.557854637.1467607914700.JavaMail.root@zimbra75-e12.priv.proxad.net> References: <000301d1d543$b9228f30$2b67ad90$@013net.net> <2080248709.557854637.1467607914700.JavaMail.root@zimbra75-e12.priv.proxad.net> Message-ID: <000001d1d5b3$cb641090$622c31b0$@013net.net> Thank you Samue! It works!!! Offer -----Original Message----- From: users [mailto:users-bounces at lists.scilab.org] On Behalf Of sgougeon at free.fr Sent: Monday, July 04, 2016 7:52 AM To: Users mailing list for Scilab Subject: Re: [Scilab-users] plot2d question >----- Mail original ----- >De: "Offe rPade" >?: users at lists.scilab.org >Envoy?: Dimanche 3 Juillet 2016 17:58:21 > >I could not use plot for drawing a semilog graph. So I am using plot2d, >but if I want the curve to have both linestyle and markers, I have to >draw the curve Twice, like: Sure not. One of the properties may be set independently after plotting, say the x-log flag: Use plot() as usual: clf t = 0:%pi/20:2*%pi; t(1) = []; plot(t,sin(t),'ro-.') // then ax = gca(); ax.log_flags = "ln"; // or simply // gca().log_flags = "ln"; with Scilab 6 // That's it >Plot2d(x,y,1,logflag=?ln?) for the line // beware about the capital: plot2d instead of Plot2d Samuel PS : see also http://bugzilla.scilab.org/14191 I will propose to implement the "ll".. etc flag as in plot([axes],["ln"],..), for Scilab 6. _______________________________________________ users mailing list users at lists.scilab.org http://lists.scilab.org/mailman/listinfo/users From jrafaelbguerra at hotmail.com Mon Jul 4 12:11:23 2016 From: jrafaelbguerra at hotmail.com (Rafael Guerra) Date: Mon, 4 Jul 2016 12:11:23 +0200 Subject: [Scilab-users] plot2d question In-Reply-To: <001a01d1d571$a1da6400$e58f2c00$@013net.net> References: <000301d1d543$b9228f30$2b67ad90$@013net.net> <001a01d1d571$a1da6400$e58f2c00$@013net.net> Message-ID: It works for me in Scilab 5.5.2 and 6.0.0, the result is shown here: From: users [mailto:users-bounces at lists.scilab.org] On Behalf Of Offe rPade Sent: Sunday, July 03, 2016 11:27 PM To: 'Users mailing list for Scilab' Subject: Re: [Scilab-users] plot2d question Sorry Rafael It did not work. Thanks anyway From: users [mailto:users-bounces at lists.scilab.org] On Behalf Of Rafael Guerra Sent: Sunday, July 03, 2016 9:24 PM To: 'Users mailing list for Scilab' Subject: Re: [Scilab-users] plot2d question Offer, Would this be ok: x=(1:10)'; y=log(x); plot2d([x x],[y y],[1,-5],logflag='ln') Regards, Rafael From: users [mailto:users-bounces at lists.scilab.org] On Behalf Of Offe rPade Sent: Sunday, July 03, 2016 5:58 PM To: users at lists.scilab.org Subject: [Scilab-users] plot2d question I could not use plot for drawing a semilog graph. So I am using plot2d, but if I want the curve to have both linestyle and markers, I have to draw the curve Twice, like: Plot2d(x,y,1,logflag='ln') for the line And then: Plot2d(x,y,-5,logflag='ln') for the markers. It is very cumbersome. Does anyone know a simple way to do it? Offer -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.png Type: image/png Size: 10439 bytes Desc: not available URL: From perrichon.pierre at wanadoo.fr Mon Jul 4 13:25:20 2016 From: perrichon.pierre at wanadoo.fr (Perrichon) Date: Mon, 4 Jul 2016 13:25:20 +0200 Subject: [Scilab-users] 2016.07.02 - Double click on zcos ou sce files open Scilab GUI but not Xcos or Scinotes - Elements Solution Message-ID: <003701d1d5e6$c0511a30$40f34e90$@wanadoo.fr> Dear, Following a last email wrote by Samuel Goujon, he informed me that, for him, nothing particuiar is (and must be) done when double clicking on a zcos, cos, xcos, sci, sce files, on the OS browser (I speak here with Windows OS, for other ones, I don't know) I don't agree. Point 1: -------- Scilab Installer proposes on the before last page to associate zcos, cos, xcos, sci, sce files with the new version to install. As far as I can understand, it's done to open the files in one Scilab session. for a zcos file, it opens Scilab+Xcos; for sce or sci files, it opens Scilab + Scinotes,... and so on, with the clicked file. It is what happen where we install a first version of Scilab. Then, if we install another Scilab version, zcos, cos, xcos, sci, sce files are open with the latest installed version. We get a correct association with all files, see photo "Photos Icones Scilab OK.JPG" in attached files, with a particuliar icon for zcos, sce ...etc. Point 2 ------- Now, I've installed 4 versions of Scilab 5.5.2-x32, 6.0.0 b2 x32, 6.0.0 b2 x64, 5.5.2-x64 on W10 At this point, files are correctly open with 5.5.2-x64 Suppose I want to open files with 6.0.0 b2 x64. If I right click on a zcos, and modify the propertu "...Open with" and select WScilex in the bin directory of version 6.0.0 b2 x64, it breaks the system. Here is the error. Files are badly associated with the Scilab general icon, and not with the right icone zcos, sce,.... See photo "Photos Icones Scilab NOT OK.JPG" Point 3 ------- There is no solution if we try to de-install 6.0.0 b2 x64 and re-install it. Conclusion ------------ The only solution consists of de-install all versions of scilab, and re-install them one by one. It seems forbidden to manually modify the properties of files. If you want to open them with a version vvv, first de-instal vvv and re-install vvv See also bug #11874 (...for Clement) and #14651 At this step, I dont't know if it is a problem with Wscilex, or a bad management done by W10 To read you Sincerely, Pierre Correct icons : Bad icons : De : Perrichon [mailto:perrichon.pierre at wanadoo.fr] Envoy? : samedi 2 juillet 2016 18:51 ? : 'Users mailing list for Scilab' Objet : 2016.07.02 - Double click on zcos ou sce files open Scilab GUI but not Xcos or Scinotes Dear, When I click a zcos file or sce file, the Scilab GUI opens, but not Xcos for zcos ou Scinotes for sce files. It was working 1 month ago, but now I can't do anything, even if I re-install Scilab 5.5.2 x64 W10 Note : others Scilab version are installed on my machine : Scilab 5.5.2 x32 and x64, Scilab 6.0.0 b2 x32 and x64. But the problem is persistent if I suppress all versions and re-install only 5.5.2 x64. Other strange thing : Scilab seems memorize its last options in the GUI (last directory access for example), even if I re-install the Scilab version. Where is it memorized (which file and which directory ?) See also bug #14651 for attached files Sincerely Pierre -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.gif Type: image/gif Size: 906 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image006.jpg Type: image/jpeg Size: 18929 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image007.jpg Type: image/jpeg Size: 18024 bytes Desc: not available URL: From clement.david at scilab-enterprises.com Tue Jul 5 16:04:25 2016 From: clement.david at scilab-enterprises.com (=?ISO-8859-1?Q?Cl=E9ment?= David) Date: Tue, 05 Jul 2016 16:04:25 +0200 Subject: [Scilab-users] Nightly build w10 x64 5.5.2 or 6.0.0 b2 - Confusion between versions In-Reply-To: <002901d1d37a$6d366fd0$47a34f70$@wanadoo.fr> References: <002901d1d37a$6d366fd0$47a34f70$@wanadoo.fr> Message-ID: <1467727465.2206.48.camel@scilab-enterprises.com> Hello Pierre, hello all, Great notice and, indeed, everything is fine ! As Scilab 6.0.0 is not released yet, it is not branched on a dedicated "6.0" branch and we are still developing on the "master" branch. The compilation chain produce each night a new nightly build containing all changes the will be available on the Scilab 6.0.0 stable release. Thanks for asking :), -- Cl?ment Le vendredi 01 juillet 2016 ? 11:24 +0200, Perrichon a ?crit?: > Hello, > ? > Today, the Nightly Buid server delivers the same version scilab-master-1467282800_x64.exe, and > display 6.0.0 when executing ver() instruction. > So it creates a full confusion to distinguish bugs from 5.5.2 or 6.0.0, or appreciates > improvments. > ? > Sincerely > Pierre > _______________________________________________ > users mailing list > users at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/users From skiba.g at gmail.com Wed Jul 6 10:39:56 2016 From: skiba.g at gmail.com (Grzegorz Skiba) Date: Wed, 6 Jul 2016 10:39:56 +0200 Subject: [Scilab-users] Running long term script - suggestion needed Message-ID: Dear Scilab users, I'm writing script which uses GUI and it receives data from embedded device via UDP protocol. Script will be used for monitoring and it has to run continuously for 7-8 days. I did some test on it and I see that after 24hour test Scilab process consumes 400MB RAM memory more and it continuously allocates memory (I use windows process manager). My script uses uicontrol and plot control to present data live. It receives data via UDP (custom DLL function is called) and buffer which holds plot data is shifted and plotted. Here is simplified main loop code: buf_len = 100; buffer = zeros(1,buf_len); while 1 // blocking udp receive call, returns matrix 5x20 data = udp_recv(5, 20); data_size = size(data(:,1)); // do some buffer shifting // put received data to buffer // update plot a.children.children.data(:,2) = buffer'; end What can couse continous Scilab process memory allocation? Maybe I should use globals for buffer and data variable ? Any suggestion on this ? Thank you, Grzegorz -------------- next part -------------- An HTML attachment was scrubbed... URL: From clement.david at scilab-enterprises.com Fri Jul 8 10:48:17 2016 From: clement.david at scilab-enterprises.com (=?ISO-8859-1?Q?Cl=E9ment?= David) Date: Fri, 08 Jul 2016 10:48:17 +0200 Subject: [Scilab-users] Running long term script - suggestion needed In-Reply-To: References: Message-ID: <1467967697.15081.20.camel@scilab-enterprises.com> Hello Grzegorz, This seems to be a memory leak somewhere, could you check that your `udp_recv` gateway does not leak. On our side, if you do not append to?buffer nothing should leak. To check that the Java render is correct, you could connect to the Scilab JVM using VisualVM [1] and check the allocated memory from the Java side. [1]:?https://visualvm.java.net/ -- Cl?ment Le mercredi 06 juillet 2016 ? 10:39 +0200, Grzegorz Skiba a ?crit?: > Dear Scilab users,? > > I'm writing script which uses GUI and it receives data from embedded device via UDP protocol. > Script will be used for monitoring and it has to run continuously for 7-8 days. > I did some test on it and I see that after 24hour test Scilab process consumes 400MB RAM memory > ?more and it continuously allocates memory (I use windows process manager). > > My script uses uicontrol and plot control to present data live. It receives data via UDP (custom > DLL function is called) and buffer which holds plot data is shifted and plotted.? > > Here is simplified main loop code: > > buf_len = 100; > buffer = zeros(1,buf_len); > while 1 ?? > ? ? ? ? // blocking udp receive call, returns matrix 5x20 > ? ? ? ? data = udp_recv(5, 20); > ? ? ? ? data_size = size(data(:,1)); > ? ? ? ?? > ? ? ? ? // do some buffer shifting? > > ? ? ? ? // put received data to buffer > > ? ? ? ?// update plot? > ? ? ? ?a.children.children.data(:,2) = buffer'; > end > > What can couse continous Scilab process memory allocation? Maybe I should use globals for buffer > and data variable ? Any suggestion on this ?? > > Thank you, Grzegorz? > _______________________________________________ > users mailing list > users at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/users From stella.amp at gmail.com Fri Jul 8 13:41:27 2016 From: stella.amp at gmail.com (stella) Date: Fri, 8 Jul 2016 04:41:27 -0700 (MST) Subject: [Scilab-users] Identifying States in XCOS model- Steadycos Message-ID: <1467978087722-4034353.post@n3.nabble.com> Hello everyone, I have a question regarding the states of a continuous system. I want to use the steadycos function on a very complex model that I have on XCOS. The first argument of the function is X: the continuous state. Is there are way that I can find out the order of the states or set names to the integrators so that I can order my initial conditions input? Any help will be greatly appreciated -- View this message in context: http://mailinglists.scilab.org/Identifying-States-in-XCOS-model-Steadycos-tp4034353.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From clement.david at scilab-enterprises.com Fri Jul 8 14:37:18 2016 From: clement.david at scilab-enterprises.com (=?ISO-8859-1?Q?Cl=E9ment?= David) Date: Fri, 08 Jul 2016 14:37:18 +0200 Subject: [Scilab-users] replacing sed command by regexp ? In-Reply-To: References: Message-ID: <1467981438.15081.27.camel@scilab-enterprises.com> Hello Philippe, About replacing "%foo_" to "foo_" in a file, I crafted an example using strsplit() and strcat() (see attached) but it might be good to have an extended strsubst() that can output groups (\1 in your regexp). Do not hesitate to report a bug on that, -- Cl?ment Le mercredi 29 juin 2016 ? 11:34 +0200, philippe a ?crit?: > Hi to all, > > I need to remove some "%" characters??from help files that are generated > with help_from_sci. The functions names start with "%" because these are > ?overloading functions , and I need to remove thoses "%" from xml ids in > the help files (help files names are already changed).??To do this I've > added the command : > > unix('sed -i ''s/%\(.*\)_/\1_/g'' typea_op_typeb.xml') > > to my help/en_US/builder_help.sce file, see details below. I suppose > this could be a problem for users to build the toolbox on windows > systems or even to publish the toolbox as an atoms module. > > > I've already replaced all linux commands called with "unix(...)"??by > their scilab equivalent (rm-> mmdelete, mv -> movefile, ...) except this > call to "sed" . I know there is a??"regexp" function??but I'm not very > comfortable with perl regular expressions, and I suppose I should > combine it with "mgetl","mputl" and "strsubst"??to perform the good > string substitutions . > > Does some one has a simple way to do it ? > > Philippe. > > > %<---%<---%<---??help/en_US/builder_help.sce??%<---%<---%<---%<---%<-- > help_lang_dir = get_absolute_file_path('build_help.sce'); > help_from_sci('../macros/','../help/en_US','../demos/') > printf('remove *percent* from xml id in help files \n') > for fic=listfiles(help_lang_dir+'*.xml')' > ????unix('sed -i ''s/%\(.*\)_/\1_/g'' '+fic) > ????printf('%s\n',fic) > end > %<---%<---%<---%<---%<---%<---%<---%<---%<---%<---%<---%<---%<---%<-- > > > _______________________________________________ > users mailing list > users at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/users -------------- next part -------------- A non-text attachment was scrubbed... Name: foo.sce Type: application/x-scilab-sce Size: 283 bytes Desc: not available URL: -------------- next part -------------- this is a file containing some %foo_ references and also some %bar_ related contents And that's it ! From rouxph.22 at gmail.com Fri Jul 8 18:28:01 2016 From: rouxph.22 at gmail.com (philippe) Date: Fri, 8 Jul 2016 18:28:01 +0200 Subject: [Scilab-users] replacing sed command by regexp ? In-Reply-To: <1467981438.15081.27.camel@scilab-enterprises.com> References: <1467981438.15081.27.camel@scilab-enterprises.com> Message-ID: <577FD491.5000901@gmail.com> Le 08/07/2016 14:37, Cl?ment David a ?crit : > > About replacing "%foo_" to "foo_" in a file, I crafted an example using strsplit() and strcat() (see > attached) but it might be good to have an extended strsubst() that can output groups (\1 in your > regexp). Thanks Cl?ment, I will use it as a starting point to replace the sed command. Philippe. From tim at wescottdesign.com Fri Jul 8 19:16:23 2016 From: tim at wescottdesign.com (Tim Wescott) Date: Fri, 08 Jul 2016 10:16:23 -0700 Subject: [Scilab-users] Memory leak (v. 5.5.0) Message-ID: <1467998183.2747.49.camel@Servo> I don't know why, but the attached script makes Scilab gobble up memory like a bandit. Granted, I'm running it over and over, but still... I don't know if this happens with more recent versions. Run the following, while keeping an eye on memory usage. Memory is just sucked up, and not returned until Scilab is terminated. for n = 1:500; b = makeVector(b, 1e4); end -->ver ans = !Scilab Version: 5.5.0.1397209685 ! ! ! !Operating System: Linux 3.16.0-76-generic ! ! ! !Java version: 1.7.0_101 ! ! ! !Java runtime information: OpenJDK Runtime Environment (build 1.7.0_101-b00) ! ! ! !Java Virtual Machine information: OpenJDK 64-Bit Server VM (build 24.95-b01, mixed mode) ! ! ! !Vendor specification: Oracle Corporation ! -- Tim Wescott www.wescottdesign.com Control & Communications systems, circuit & software design. Phone: 503.631.7815 Cell: 503.349.8432 -------------- next part -------------- A non-text attachment was scrubbed... Name: makeVector.sci Type: application/x-scilab-sci Size: 851 bytes Desc: not available URL: From oferpade at 013net.net Sun Jul 10 07:55:33 2016 From: oferpade at 013net.net (Offe rPade) Date: Sun, 10 Jul 2016 08:55:33 +0300 Subject: [Scilab-users] using web command Message-ID: <001801d1da6f$ac79e630$056db290$@013net.net> In matlab gui, I used the following command: stat = web(['\help\propagation.htm'], '-browser') to get to my help files. Is there a similar command in scilab? Offer -------------- next part -------------- An HTML attachment was scrubbed... URL: From skiba.g at gmail.com Sun Jul 10 08:56:45 2016 From: skiba.g at gmail.com (Grzegorz Skiba) Date: Sun, 10 Jul 2016 08:56:45 +0200 Subject: [Scilab-users] using web command In-Reply-To: <001801d1da6f$ac79e630$056db290$@013net.net> References: <001801d1da6f$ac79e630$056db290$@013net.net> Message-ID: urlGet can be helpful. https://help.scilab.org/doc/5.5.2/en_US/getURL.html Regards Grzegorz 2016-07-10 7:55 GMT+02:00 Offe rPade : > In matlab gui, I used the following command: > > stat = web(['\help\propagation.htm'], '-browser') > > to get to my help files. > > Is there a similar command in scilab? > > Offer > > > > _______________________________________________ > users mailing list > users at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/users > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From oferpade at 013net.net Sun Jul 10 09:06:45 2016 From: oferpade at 013net.net (Offe rPade) Date: Sun, 10 Jul 2016 10:06:45 +0300 Subject: [Scilab-users] using web command In-Reply-To: References: <001801d1da6f$ac79e630$056db290$@013net.net> Message-ID: <002901d1da79$9e50abc0$daf20340$@013net.net> Thanks I will try to adjust it to my use. From: users [mailto:users-bounces at lists.scilab.org] On Behalf Of Grzegorz Skiba Sent: Sunday, July 10, 2016 9:57 AM To: Users mailing list for Scilab Subject: Re: [Scilab-users] using web command urlGet can be helpful. https://help.scilab.org/doc/5.5.2/en_US/getURL.html Regards Grzegorz 2016-07-10 7:55 GMT+02:00 Offe rPade : In matlab gui, I used the following command: stat = web(['\help\propagation.htm'], '-browser') to get to my help files. Is there a similar command in scilab? Offer _______________________________________________ users mailing list users at lists.scilab.org http://lists.scilab.org/mailman/listinfo/users -------------- next part -------------- An HTML attachment was scrubbed... URL: From sgougeon at free.fr Mon Jul 11 15:44:15 2016 From: sgougeon at free.fr (sgougeon at free.fr) Date: Mon, 11 Jul 2016 15:44:15 +0200 (CEST) Subject: [Scilab-users] replacing sed command by regexp ? In-Reply-To: <1467981438.15081.27.camel@scilab-enterprises.com> Message-ID: <346997184.613818580.1468244655181.JavaMail.root@zimbra75-e12.priv.proxad.net> ----- Mail original ----- >De: "Cl?ment David" >Envoy?: Vendredi 8 Juillet 2016 14:37:18 > >Hello Philippe, > >About replacing "%foo_" to "foo_" in a file, I crafted an example using strsplit() and strcat() (see >attached) but it might be good to have an extended strsubst() that can output groups (\1 in your >regexp). > >Do not hesitate to report a bug on that, Done there: http://bugzilla.scilab.org/9123 http://fileexchange.scilab.org/toolboxes/294000 From sgougeon at free.fr Mon Jul 11 15:52:14 2016 From: sgougeon at free.fr (sgougeon at free.fr) Date: Mon, 11 Jul 2016 15:52:14 +0200 (CEST) Subject: [Scilab-users] using web command In-Reply-To: <001801d1da6f$ac79e630$056db290$@013net.net> Message-ID: <380478619.613863416.1468245134614.JavaMail.root@zimbra75-e12.priv.proxad.net> ----- Mail original ----- >De: "Offe rPade" >In matlab gui, I used the following command: >stat = web(['\help\propagation.htm'], '-browser') >to get to my help files. >Is there a similar command in scilab? You may try browseURL(): https://fileexchange.scilab.org/toolboxes/453000 Samuel From perrichon.pierre at wanadoo.fr Tue Jul 12 18:34:31 2016 From: perrichon.pierre at wanadoo.fr (Perrichon) Date: Tue, 12 Jul 2016 18:34:31 +0200 Subject: [Scilab-users] 2016.07.12 - Latex font destroys the readability of functional box CLR + others Message-ID: Hello, In a basic xcos program, we draw a CLR box which represents a filtered derivative. Parameters of this box are Rv_Kd for the gain and Rv_Td for its constant time. These parameters are defined in the Context Modify menu, and not correctly drawn inside a CLR box (as example). I suppose this fact is due to the latex font which is not compliant and not homogeneous with font of other common boxes. How can we do to change the font in the box ? All parameters are described in a very big documentation, and it will be terrible to rename these parameters and change all docs for a font problem! See also bug #14671 for attached files Pierre Sincerely -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.gif Type: image/gif Size: 906 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image004.jpg Type: image/jpeg Size: 14966 bytes Desc: not available URL: From perrichon.pierre at wanadoo.fr Tue Jul 12 19:29:39 2016 From: perrichon.pierre at wanadoo.fr (Perrichon) Date: Tue, 12 Jul 2016 19:29:39 +0200 Subject: [Scilab-users] Some components are not always well drawn from Xos 5.5.2 to 6.0.0 b2 with lost of information Message-ID: <005101d1dc62$f7f59e70$e7e0db50$@wanadoo.fr> Hello, When drawning a Xcos file with Scilab 5.5.2 x64 W10 and reopen it with Scilab 6.0.0 x64 W10 (or nightly build) parts of componants are not correctly redrawn with lost of informations See also bug #14672 for attached files Sincerely Pierre. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.gif Type: image/gif Size: 906 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image004.jpg Type: image/jpeg Size: 41282 bytes Desc: not available URL: From philpollock at hotmail.com Fri Jul 15 02:37:31 2016 From: philpollock at hotmail.com (PhilAPol) Date: Thu, 14 Jul 2016 17:37:31 -0700 (MST) Subject: [Scilab-users] Windows 10 VS 2015 example under ilib_build fails pvApiCtx undeclared identifier Message-ID: <1468543051395-4034371.post@n3.nabble.com> I am using Visual Studio Express 2015 with C++ and attempted to build the cpp example for a an interface found at page: https://help.scilab.org/docs/5.4.0/fr_FR/ilib_build.html I copied the example and pasted it into SciNotes and saved it into cpp_test.sce then executed it. The build produced several errors: ========================================= exec('C:\Users\Admin\Desktop\cpp_test.sce', -1) Generate a gateway file Generate a loader file Generate a Makefile Running the makefile Compilation of ilib_build_cpp.cpp Compilation of ilib_build_cpp.h Compilation of ilib_build_cpp.hxx Compilation of sci_cppfind.cxx Building shared library (be patient) !------------- Compile file sci_cppfind.cxx -------------- ! ! ! ! IF NOT EXIST Release mkdir Release ! ! ! !sci_cppfind.cxx ! ! ! !sci_cppfind.cxx(27): error C2065: 'pvApiCtx': undeclared identifier ! ! ! !sci_cppfind.cxx(34): error C2065: 'pvApiCtx': undeclared identifier ! ! ! !sci_cppfind.cxx(47): error C2065: 'pvApiCtx': undeclared identifier ! ! ! !sci_cppfind.cxx(54): error C2065: 'pvApiCtx': undeclared identifier ! ! ! !sci_cppfind.cxx(67): error C2065: 'pvApiCtx': undeclared identifier ! ! ! !sci_cppfind.cxx(81): error C2065: 'pvApiCtx': undeclared identifier ! ! ! !sci_cppfind.cxx(95): error C2065: 'pvApiCtx': undeclared identifier ! ! ! !sci_cppfind.cxx(102): error C2065: 'pvApiCtx': undeclared identifier ! ! ! !sci_cppfind.cxx(116): warning C4244: '=': conversion from 'unsigned __int64' to 'double! !', possible loss of data ! ! ! !sci_cppfind.cxx(122): error C2065: 'pvApiCtx': undeclared identifier ! ! ! !sci_cppfind.cxx(129): error C2065: 'pvApiCtx': undeclared identifier ! ! ! !NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN! !\amd64\cl.EXE"' : return code '0x2' ! ! ! !Stop. ! at line 36 of function dlwCompile ( C:\PROGRA~1\SCILAB~1.0-B\modules\dynamic_link\macros\windows\dlwCompile.sci line 49 ) at line 70 of function ilib_compile ( C:\PROGRA~1\SCILAB~1.0-B\modules\dynamic_link\macros\ilib_compile.sci line 86 ) at line 115 of function ilib_build ( C:\PROGRA~1\SCILAB~1.0-B\modules\dynamic_link\macros\ilib_build.sci line 128 ) at line 147 of executed file C:\Users\Admin\Desktop\cpp_test.sce ilib_compile: Error while executing Makelib.mak. ==================================== I have not configured any environment variables for includes, etc. since I it wasn't clear how the environment should be configured - I presumed that the SciLab installation with Visual Studio 2015 would set this up properly so that the demos would work. Please help me find the problem. Tnx PhilAPol -- View this message in context: http://mailinglists.scilab.org/Windows-10-VS-2015-example-under-ilib-build-fails-pvApiCtx-undeclared-identifier-tp4034371.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From nakabisha at gmail.com Sun Jul 17 21:47:03 2016 From: nakabisha at gmail.com (N.N.) Date: Sun, 17 Jul 2016 21:47:03 +0200 Subject: [Scilab-users] Scilab does not run on my win-10 pc ! Message-ID: I tried to install Scilab on a new installated Win-10 PC. The installer did not report an error, but when launching the desktop icon it reported the next fatal error : Scilab cannot create Scilab Java Main-Class (we have not been able to find the main Scilab class. Check if the Scilab and third-party packages are available). Is it possible to help me ? -- Complex numbers: They are all fun and games until someone loses an i. From paul.bignier at scilab-enterprises.com Mon Jul 18 11:10:46 2016 From: paul.bignier at scilab-enterprises.com (Paul Bignier) Date: Mon, 18 Jul 2016 11:10:46 +0200 Subject: [Scilab-users] Scilab does not run on my win-10 pc ! In-Reply-To: References: Message-ID: <578C9D16.8000309@scilab-enterprises.com> Hello Alain, Did you retry the advice giveen in these old topics? http://mailinglists.scilab.org/template/NamlServlet.jtp?macro=user_nodes&user=474024 The message indicates a Java issue, you probably have a version too old so Scilab cannot use it. Hope this helps, Regards, Paul On 07/17/2016 09:47 PM, N.N. wrote: > I tried to install Scilab on a new installated Win-10 PC. > The installer did not report an error, but when launching > the desktop icon it reported the next fatal error : > > Scilab cannot create Scilab Java Main-Class > (we have not been able to find the main Scilab class. > Check if the Scilab and third-party packages > are available). > > Is it possible to help me ? > -- Paul BIGNIER Development engineer ----------------------------------------------------------- Scilab Enterprises 143bis rue Yves Le Coz - 78000 Versailles, France Phone: +33.1.80.77.04.68 http://www.scilab-enterprises.com From nakabisha at gmail.com Mon Jul 18 17:28:49 2016 From: nakabisha at gmail.com (N.N.) Date: Mon, 18 Jul 2016 17:28:49 +0200 Subject: [Scilab-users] Scilab does not run on my win-10 pc ! In-Reply-To: <578C9D16.8000309@scilab-enterprises.com> References: <578C9D16.8000309@scilab-enterprises.com> Message-ID: Hello Paul, I tried the advices in the old topics... It is certainly a big configuration error with Java. I have installed the newst JDK. The same result, a crash a runtime. But I still have hope to fix it. At this moment I go a fatal installation error with Dyalog APL 15.0 Many thanks for your time and answer. Alain. On 7/18/16, Paul Bignier wrote: > > Hello Alain, > > Did you retry the advice giveen in these old topics? > http://mailinglists.scilab.org/template/NamlServlet.jtp?macro=user_nodes&user=474024 > > The message indicates a Java issue, you probably have a version too old > so Scilab cannot use it. > > Hope this helps, > Regards, > Paul > > > On 07/17/2016 09:47 PM, N.N. wrote: >> I tried to install Scilab on a new installated Win-10 PC. >> The installer did not report an error, but when launching >> the desktop icon it reported the next fatal error : >> >> Scilab cannot create Scilab Java Main-Class >> (we have not been able to find the main Scilab class. >> Check if the Scilab and third-party packages >> are available). >> >> Is it possible to help me ? >> > > -- > Paul BIGNIER > Development engineer > ----------------------------------------------------------- > Scilab Enterprises > 143bis rue Yves Le Coz - 78000 Versailles, France > Phone: +33.1.80.77.04.68 > http://www.scilab-enterprises.com > > _______________________________________________ > users mailing list > users at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/users > -- Complex numbers: They are all fun and games until someone loses an i. From clement.david at scilab-enterprises.com Tue Jul 19 15:11:22 2016 From: clement.david at scilab-enterprises.com (=?ISO-8859-1?Q?Cl=E9ment?= David) Date: Tue, 19 Jul 2016 15:11:22 +0200 Subject: [Scilab-users] Windows 10 VS 2015 example under ilib_build fails pvApiCtx undeclared identifier In-Reply-To: <1468543051395-4034371.post@n3.nabble.com> References: <1468543051395-4034371.post@n3.nabble.com> Message-ID: <1468933882.2176.23.camel@scilab-enterprises.com> Hello?PhilAPol, The `pvApiCtx` variable has been introduced to migrate between Scilab 5 and Scilab 6. What Scilab version are you using ? -- Cl?ment Le jeudi 14 juillet 2016 ? 17:37 -0700, PhilAPol a ?crit?: > I am using Visual Studio Express 2015 with C++ and attempted to build the cpp > example for a an interface found at page: > > https://help.scilab.org/docs/5.4.0/fr_FR/ilib_build.html > > I copied the example and pasted it into SciNotes and saved it into > cpp_test.sce then executed it. The build produced several errors: > > ========================================= > > exec('C:\Users\Admin\Desktop\cpp_test.sce', -1) > ???Generate a gateway file > ???Generate a loader file > ???Generate a Makefile > ???Running the makefile > ???Compilation of ilib_build_cpp.cpp > ???Compilation of ilib_build_cpp.h > ???Compilation of ilib_build_cpp.hxx > ???Compilation of sci_cppfind.cxx > ???Building shared library (be patient) > > !------------- Compile file sci_cppfind.cxx --------------????????????????????????????? > ! > !?????????????????????????????????????????????????????????????????????????????????????? > ! > ! IF NOT EXIST??Release mkdir Release?????????????????????????????????????????????????? > ! > !?????????????????????????????????????????????????????????????????????????????????????? > ! > !sci_cppfind.cxx??????????????????????????????????????????????????????????????????????? > ! > !?????????????????????????????????????????????????????????????????????????????????????? > ! > !sci_cppfind.cxx(27): error C2065: 'pvApiCtx': undeclared identifier??????????????????? > ! > !?????????????????????????????????????????????????????????????????????????????????????? > ! > !sci_cppfind.cxx(34): error C2065: 'pvApiCtx': undeclared identifier??????????????????? > ! > !?????????????????????????????????????????????????????????????????????????????????????? > ! > !sci_cppfind.cxx(47): error C2065: 'pvApiCtx': undeclared identifier??????????????????? > ! > !?????????????????????????????????????????????????????????????????????????????????????? > ! > !sci_cppfind.cxx(54): error C2065: 'pvApiCtx': undeclared identifier??????????????????? > ! > !?????????????????????????????????????????????????????????????????????????????????????? > ! > !sci_cppfind.cxx(67): error C2065: 'pvApiCtx': undeclared identifier??????????????????? > ! > !?????????????????????????????????????????????????????????????????????????????????????? > ! > !sci_cppfind.cxx(81): error C2065: 'pvApiCtx': undeclared identifier??????????????????? > ! > !?????????????????????????????????????????????????????????????????????????????????????? > ! > !sci_cppfind.cxx(95): error C2065: 'pvApiCtx': undeclared identifier??????????????????? > ! > !?????????????????????????????????????????????????????????????????????????????????????? > ! > !sci_cppfind.cxx(102): error C2065: 'pvApiCtx': undeclared identifier?????????????????? > ! > !?????????????????????????????????????????????????????????????????????????????????????? > ! > !sci_cppfind.cxx(116): warning C4244: '=': conversion from 'unsigned > __int64' to 'double! > !', possible loss of data?????????????????????????????????????????????????????????????? > ! > !?????????????????????????????????????????????????????????????????????????????????????? > ! > !sci_cppfind.cxx(122): error C2065: 'pvApiCtx': undeclared identifier?????????????????? > ! > !?????????????????????????????????????????????????????????????????????????????????????? > ! > !sci_cppfind.cxx(129): error C2065: 'pvApiCtx': undeclared identifier?????????????????? > ! > !?????????????????????????????????????????????????????????????????????????????????????? > ! > !NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio > 14.0\VC\BIN! > !\amd64\cl.EXE"' : return code '0x2'??????????????????????????????????????????????????? > ! > !?????????????????????????????????????????????????????????????????????????????????????? > ! > !Stop.????????????????????????????????????????????????????????????????????????????????? > ! > at line????36 of function dlwCompile???( > C:\PROGRA~1\SCILAB~1.0-B\modules\dynamic_link\macros\windows\dlwCompile.sci > line 49 ) > at line????70 of function ilib_compile ( > C:\PROGRA~1\SCILAB~1.0-B\modules\dynamic_link\macros\ilib_compile.sci line > 86 ) > at line???115 of function ilib_build???( > C:\PROGRA~1\SCILAB~1.0-B\modules\dynamic_link\macros\ilib_build.sci line 128 > ) > at line???147 of executed file C:\Users\Admin\Desktop\cpp_test.sce > > ilib_compile: Error while executing Makelib.mak. > > ==================================== > > I have not configured any environment variables for includes, etc. since I > it wasn't clear how the environment should be configured - I presumed that > the SciLab installation with Visual Studio 2015 would set this up properly > so that the demos would work. > > Please help me find the problem. > > Tnx > > PhilAPol > > > > > > -- > View this message in context: http://mailinglists.scilab.org/Windows-10-VS-2015-example-under-ilib > -build-fails-pvApiCtx-undeclared-identifier-tp4034371.html > Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. > _______________________________________________ > users mailing list > users at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/users From perrichon.pierre at wanadoo.fr Tue Jul 19 20:06:42 2016 From: perrichon.pierre at wanadoo.fr (Perrichon) Date: Tue, 19 Jul 2016 20:06:42 +0200 Subject: [Scilab-users] 2016.07.19 - Expression block bug in rendering in equation Message-ID: <000901d1e1e8$4df88550$e9e98ff0$@wanadoo.fr> Hello, Expression block doesn't give the correct rendering of the equation. Lower sign < disappears (<= replace by =), which makes a great confusion and unintelligible schema (Scilab 5.5.2 x64 W10) See also bug #14680 for attached files Sincerely Pierre -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.gif Type: image/gif Size: 906 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image004.jpg Type: image/jpeg Size: 37517 bytes Desc: not available URL: From philpollock at hotmail.com Wed Jul 20 00:38:33 2016 From: philpollock at hotmail.com (PhilAPol) Date: Tue, 19 Jul 2016 15:38:33 -0700 (MST) Subject: [Scilab-users] Windows 10 VS 2015 example under ilib_build fails pvApiCtx undeclared identifier In-Reply-To: <1468933882.2176.23.camel@scilab-enterprises.com> References: <1468543051395-4034371.post@n3.nabble.com> <1468933882.2176.23.camel@scilab-enterprises.com> Message-ID: Hi Cl?ment,I am using Scilab 6.0.0-beta-2. PhilAPol Date: Tue, 19 Jul 2016 06:12:59 -0700 From: ml-node+s994242n4034380h53 at n3.nabble.com To: philpollock at hotmail.com Subject: Re: Windows 10 VS 2015 example under ilib_build fails pvApiCtx undeclared identifier Hello PhilAPol, The `pvApiCtx` variable has been introduced to migrate between Scilab 5 and Scilab 6. What Scilab version are you using ? -- Cl?ment Le jeudi 14 juillet 2016 ? 17:37 -0700, PhilAPol a ?crit : > I am using Visual Studio Express 2015 with C++ and attempted to build the cpp > example for a an interface found at page: > > https://help.scilab.org/docs/5.4.0/fr_FR/ilib_build.html > > I copied the example and pasted it into SciNotes and saved it into > cpp_test.sce then executed it. The build produced several errors: > > ========================================= > > exec('C:\Users\Admin\Desktop\cpp_test.sce', -1) > Generate a gateway file > Generate a loader file > Generate a Makefile > Running the makefile > Compilation of ilib_build_cpp.cpp > Compilation of ilib_build_cpp.h > Compilation of ilib_build_cpp.hxx > Compilation of sci_cppfind.cxx > Building shared library (be patient) > > !------------- Compile file sci_cppfind.cxx -------------- > ! > ! > ! > ! IF NOT EXIST Release mkdir Release > ! > ! > ! > !sci_cppfind.cxx > ! > ! > ! > !sci_cppfind.cxx(27): error C2065: 'pvApiCtx': undeclared identifier > ! > ! > ! > !sci_cppfind.cxx(34): error C2065: 'pvApiCtx': undeclared identifier > ! > ! > ! > !sci_cppfind.cxx(47): error C2065: 'pvApiCtx': undeclared identifier > ! > ! > ! > !sci_cppfind.cxx(54): error C2065: 'pvApiCtx': undeclared identifier > ! > ! > ! > !sci_cppfind.cxx(67): error C2065: 'pvApiCtx': undeclared identifier > ! > ! > ! > !sci_cppfind.cxx(81): error C2065: 'pvApiCtx': undeclared identifier > ! > ! > ! > !sci_cppfind.cxx(95): error C2065: 'pvApiCtx': undeclared identifier > ! > ! > ! > !sci_cppfind.cxx(102): error C2065: 'pvApiCtx': undeclared identifier > ! > ! > ! > !sci_cppfind.cxx(116): warning C4244: '=': conversion from 'unsigned > __int64' to 'double! > !', possible loss of data > ! > ! > ! > !sci_cppfind.cxx(122): error C2065: 'pvApiCtx': undeclared identifier > ! > ! > ! > !sci_cppfind.cxx(129): error C2065: 'pvApiCtx': undeclared identifier > ! > ! > ! > !NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio > 14.0\VC\BIN! > !\amd64\cl.EXE"' : return code '0x2' > ! > ! > ! > !Stop. > ! > at line 36 of function dlwCompile ( > C:\PROGRA~1\SCILAB~1.0-B\modules\dynamic_link\macros\windows\dlwCompile.sci > line 49 ) > at line 70 of function ilib_compile ( > C:\PROGRA~1\SCILAB~1.0-B\modules\dynamic_link\macros\ilib_compile.sci line > 86 ) > at line 115 of function ilib_build ( > C:\PROGRA~1\SCILAB~1.0-B\modules\dynamic_link\macros\ilib_build.sci line 128 > ) > at line 147 of executed file C:\Users\Admin\Desktop\cpp_test.sce > > ilib_compile: Error while executing Makelib.mak. > > ==================================== > > I have not configured any environment variables for includes, etc. since I > it wasn't clear how the environment should be configured - I presumed that > the SciLab installation with Visual Studio 2015 would set this up properly > so that the demos would work. > > Please help me find the problem. > > Tnx > > PhilAPol > > > > > > -- > View this message in context: http://mailinglists.scilab.org/Windows-10-VS-2015-example-under-ilib > -build-fails-pvApiCtx-undeclared-identifier-tp4034371.html > Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. > _______________________________________________ > users mailing list > [hidden email] > http://lists.scilab.org/mailman/listinfo/users_______________________________________________ users mailing list [hidden email] http://lists.scilab.org/mailman/listinfo/users If you reply to this email, your message will be added to the discussion below: http://mailinglists.scilab.org/Windows-10-VS-2015-example-under-ilib-build-fails-pvApiCtx-undeclared-identifier-tp4034371p4034380.html To unsubscribe from Windows 10 VS 2015 example under ilib_build fails pvApiCtx undeclared identifier, click here. NAML -- View this message in context: http://mailinglists.scilab.org/Windows-10-VS-2015-example-under-ilib-build-fails-pvApiCtx-undeclared-identifier-tp4034371p4034382.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From perrichon.pierre at wanadoo.fr Fri Jul 22 12:02:53 2016 From: perrichon.pierre at wanadoo.fr (Perrichon) Date: Fri, 22 Jul 2016 12:02:53 +0200 Subject: [Scilab-users] Steady state condition of o first order low pass filter Message-ID: Hello, Is there a way to initialize a first order low pass filter to an initial value to its final value, in order to avoid any transitory at start simulation ? May be in a batch file and accessing to the scs_m CLR block register ? But I don't see where can I do it. Do you have any idea. In the following example, I want 1 in register up to time t=5s Init value is not available in the CLR block. Thanks for your response, Sincerely Pierre -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.gif Type: image/gif Size: 906 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image004.jpg Type: image/jpeg Size: 8204 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Test_SteadyState.zcos Type: application/octet-stream Size: 4597 bytes Desc: not available URL: From paul.bignier at scilab-enterprises.com Fri Jul 22 12:13:11 2016 From: paul.bignier at scilab-enterprises.com (Paul Bignier) Date: Fri, 22 Jul 2016 12:13:11 +0200 Subject: [Scilab-users] Steady state condition of o first order low pass filter In-Reply-To: References: Message-ID: <5791F1B7.2090301@scilab-enterprises.com> Hello Pierre, Indeed you can modify that field in the block's "model.state" parameter (0 by default). From Xcos, Go to Simulation->Compile. Then in Scilab (let's assume your block number is 3) : --> scs_m.objs(3).model.state = newInitValue; xcos_simulate(scs_m, 4); Regards, Paul On 07/22/2016 12:02 PM, Perrichon wrote: > > Hello, > > Is there a way to initialize a first order low pass filter to an > initial value to its final value, in order to avoid any transitory at > start simulation ? > > May be in a batch file and accessing to the scs_m CLR block register ? > > But I don?t see where can I do it. > > Do you have any idea. > > In the following example, I want 1 in register up to time t=5s > > Init value is not available in the CLR block. > > Thanks for your response, > > Sincerely > > Pierre > > > > _______________________________________________ > users mailing list > users at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/users -- Paul BIGNIER Development engineer ----------------------------------------------------------- Scilab Enterprises 143bis rue Yves Le Coz - 78000 Versailles, France Phone: +33.1.80.77.04.68 http://www.scilab-enterprises.com -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/gif Size: 906 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/jpeg Size: 8204 bytes Desc: not available URL: From guba at vi-anec.de Sat Jul 23 09:50:16 2016 From: guba at vi-anec.de (=?UTF-8?Q?G=c3=bcnter_Bachelier?=) Date: Sat, 23 Jul 2016 09:50:16 +0200 Subject: [Scilab-users] conformal maps for image distortion Message-ID: <777544b1-36b7-3bf1-f117-97a3fb7c74d7@vi-anec.de> I am interested in using conformal maps for image distortion and I am looking for software environments that can do this. In MathLab this can be done with imtransform() according to http://de.mathworks.com/help/images/examples/exploring-a-conformal-mapping.html How can it be done in SciLab? Thank you very much for answers! best regards Guenter Bachelier From perrichon.pierre at wanadoo.fr Sat Jul 23 18:48:01 2016 From: perrichon.pierre at wanadoo.fr (Perrichon) Date: Sat, 23 Jul 2016 18:48:01 +0200 Subject: [Scilab-users] Steady state condition of o first order low pass filter In-Reply-To: <5791F1B7.2090301@scilab-enterprises.com> References: <5791F1B7.2090301@scilab-enterprises.com> Message-ID: <003f01d1e501$f9f89180$ede9b480$@wanadoo.fr> Hello Paul, Thank you for this information, it works perfectly in one Xcos schema. I ?ve written a function in a sce file before starting xcos simulation, and by adding a label ? PB1 ? and testing ? gui=CLR ?, the procedure is more general (see attached file). Nevertheless, it is surely not well adapted in a stronger schema with superblocks et more than one CLR block. Also, I think that the right solution at the right place would be to modify the CLR gui, by adding a case ? Initial state ?, like in the Integrator with saturation block (it should definitively slove this problem). So, do you advice to write a bugzilla in the wishlist ? Best regard, Pierre De : users [mailto:users-bounces at lists.scilab.org] De la part de Paul Bignier Envoy? : vendredi 22 juillet 2016 12:13 ? : Users mailing list for Scilab Objet : Re: [Scilab-users] Steady state condition of o first order low pass filter Hello Pierre, Indeed you can modify that field in the block's "model.state" parameter (0 by default). >From Xcos, Go to Simulation->Compile. Then in Scilab (let's assume your block number is 3) : --> scs_m.objs(3).model.state = newInitValue; xcos_simulate(scs_m, 4); Regards, Paul On 07/22/2016 12:02 PM, Perrichon wrote: Hello, Is there a way to initialize a first order low pass filter to an initial value to its final value, in order to avoid any transitory at start simulation ? May be in a batch file and accessing to the scs_m CLR block register ? But I don?t see where can I do it. Do you have any idea. In the following example, I want 1 in register up to time t=5s Init value is not available in the CLR block. Thanks for your response, Sincerely Pierre _______________________________________________ users mailing list users at lists.scilab.org http://lists.scilab.org/mailman/listinfo/users -- Paul BIGNIER Development engineer ----------------------------------------------------------- Scilab Enterprises 143bis rue Yves Le Coz - 78000 Versailles, France Phone: +33.1.80.77.04.68 http://www.scilab-enterprises.com -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image004.jpg Type: image/jpeg Size: 8204 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image005.jpg Type: image/jpeg Size: 4186 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image006.jpg Type: image/jpeg Size: 13294 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image010.jpg Type: image/jpeg Size: 800 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Test_SteadyState.sce Type: application/octet-stream Size: 1697 bytes Desc: not available URL: From dragonmaw at protonmail.com Sun Jul 24 14:30:34 2016 From: dragonmaw at protonmail.com (Dragonmaw) Date: Sun, 24 Jul 2016 08:30:34 -0400 Subject: [Scilab-users] Newbie Question: Dynamic Programming/Sequence Alignment Algorithms Message-ID: Hello there, i need to align (unequally long) time series, computing their minimal euclidean distance alignment. I believe this is being done optimally with dynamic programming. Algorithms exist from biocomputing or speech recognition, but the packages i've found only provide functions applicable to either biosequences or sound files. Since i'm interested in my numerical time series only, those packages don't solve my problem, which is more general. I lack the Scilab expertise to adapt the Algorithms for my case, therefore i'd need some help finding a package that does exactly that. Perhaps one of you knows such a package. Thank you very much, Victor K Sent from [ProtonMail](https://protonmail.ch), encrypted email based in Switzerland. -------------- next part -------------- An HTML attachment was scrubbed... URL: From paul.bignier at scilab-enterprises.com Mon Jul 25 16:02:39 2016 From: paul.bignier at scilab-enterprises.com (Paul Bignier) Date: Mon, 25 Jul 2016 16:02:39 +0200 Subject: [Scilab-users] What is wrong with this FFT buffer XCos model? In-Reply-To: <1466791009625-4034284.post@n3.nabble.com> References: <1466246086552-4034228.post@n3.nabble.com> <1466435062555-4034253.post@n3.nabble.com> <1466791009625-4034284.post@n3.nabble.com> Message-ID: Hi Nikolay, Indeed there was an issue, this commit should fix it. It will be available in the nightly build on the day following its merge. Regards, Paul On 06/24/2016 07:56 PM, nikolay wrote: > I tried to launch fixed model (see in buffer5.zcos > ) in Scilab > 6.0-beta2 and get error "singularity in a block" in console. > So it seems to be a Scilab 6 bug. > > Model works normally in Scilab 5.5.2. > > > > > Scilab version is below, launched on 64-bit Ubuntu 12.04.5 LTS: > ver > ans = > > !Scilab Version: 6.0.0.1465826360 > ! > ! > ! > !Operating System: Linux 3.2.0-104-generic > ! > ! > ! > !Java version: 1.8.0_51 > ! > ! > ! > !Java runtime information: Java(TM) SE Runtime Environment (build > 1.8.0_51-b16) ! > ! > ! > !Java Virtual Machine information: Java HotSpot(TM) 64-Bit Server VM > (build 25.51-b03, mixed mode) ! > ! > ! > !Vendor specification: Oracle Corporation > ! > > > > > > With best regards, > maintainer of Mathieu functions toolbox for Scilab, > IEEE member, Ph.D., > Nikolay Strelkov. > > > > -- > View this message in context: http://mailinglists.scilab.org/What-is-wrong-with-this-FFT-buffer-XCos-model-tp4034228p4034284.html > Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. > _______________________________________________ > users mailing list > users at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/users -- Paul BIGNIER Development engineer ----------------------------------------------------------- Scilab Enterprises 143bis rue Yves Le Coz - 78000 Versailles, France Phone: +33.1.80.77.04.68 http://www.scilab-enterprises.com -------------- next part -------------- An HTML attachment was scrubbed... URL: