From chi.venier at gmail.com Fri Jul 1 13:16:33 2011 From: chi.venier at gmail.com (chiara) Date: Fri, 1 Jul 2011 11:16:33 +0000 (UTC) Subject: uploading a file txt References: <4E00B2D2.3040807@limsi.fr> Message-ID: Mathieu Dubois writes: > > Hello, > On 06/21/2011 03:41 PM, Chiara wrote: > > Dear All, > > > > I am a new Scilab user. > > I am not able to load a file txt in a file.sce. > > The error visualized is: > > > > Warning: file 'grd.txt' already opened in Scilab. > This warning comes from the fact that you have used mopen on this file. > Try mclose(fd) (where fd is the variable you get from mopen) or > mclose('all'). > However this is not related to your problem. > > load('grd.txt'); > > !--error 246 > > Function not defined for given argument type(s), > > > > check arguments or define function %_load for overloading. > load is a function to load a scilab variable written with save not to > load text files (see help('load')). > > How shall I solve the problem? > How is you text file formatted? > > If it is CSV (comma-separated values), try read read_csv. > > Otherwise you have to open the file (with mopen) and load data with mscanf. > If you have some experience in C it should not be a big deal. > > HTH, > Mathieu > > > > Thanks > > > > Chiara > > > > Thanks for your answer, I've tried with the fscanfMat (M=fscanfMat(TMPDIR + '/proof.txt')) function in order to read the matrix of 7 columns, which is formatted as follows: 40705.00 -2.56 34.07 21.09 83.61 40705.00 0.00 40705.00 -2.61 34.05 21.09 83.61 40705.00 0.00 40705.00 -2.56 34.04 21.09 83.69 40705.00 0.00 40705.00 -2.57 34.03 21.09 83.97 40705.00 0.00 40705.00 -2.64 34.02 21.09 84.21 40705.00 0.00 40705.00 -2.54 34.02 21.10 84.25 40705.00 0.00 ........................................................ Is it a problem of directory? I saved the sce file and the txt file in the temporal directory of scilab. Thanks Chiara From mathieu.dubois at limsi.fr Fri Jul 1 13:57:59 2011 From: mathieu.dubois at limsi.fr (Mathieu Dubois) Date: Fri, 01 Jul 2011 13:57:59 +0200 Subject: [scilab-Users] Re: uploading a file txt In-Reply-To: References: <4E00B2D2.3040807@limsi.fr> Message-ID: <4E0DB647.8050001@limsi.fr> On 07/01/2011 01:16 PM, chiara wrote: > Mathieu Dubois writes: > >> Hello, >> On 06/21/2011 03:41 PM, Chiara wrote: >>> Dear All, >>> >>> I am a new Scilab user. >>> I am not able to load a file txt in a file.sce. >>> The error visualized is: >>> >>> Warning: file 'grd.txt' already opened in Scilab. >> This warning comes from the fact that you have used mopen on this file. >> Try mclose(fd) (where fd is the variable you get from mopen) or >> mclose('all'). >> However this is not related to your problem. >>> load('grd.txt'); >>> !--error 246 >>> Function not defined for given argument type(s), >>> >>> check arguments or define function %_load for overloading. >> load is a function to load a scilab variable written with save not to >> load text files (see help('load')). >>> How shall I solve the problem? >> How is you text file formatted? >> >> If it is CSV (comma-separated values), try read read_csv. >> >> Otherwise you have to open the file (with mopen) and load data with mscanf. >> If you have some experience in C it should not be a big deal. >> >> HTH, >> Mathieu >>> Thanks >>> >>> Chiara >>> >> > Thanks for your answer, > I've tried with the fscanfMat (M=fscanfMat(TMPDIR + '/proof.txt')) function in > order to read the matrix of 7 columns, which is formatted as follows: > 40705.00 -2.56 34.07 21.09 83.61 40705.00 0.00 > 40705.00 -2.61 34.05 21.09 83.61 40705.00 0.00 > 40705.00 -2.56 34.04 21.09 83.69 40705.00 0.00 > 40705.00 -2.57 34.03 21.09 83.97 40705.00 0.00 > 40705.00 -2.64 34.02 21.09 84.21 40705.00 0.00 > 40705.00 -2.54 34.02 21.10 84.25 40705.00 0.00 > ........................................................ > > Is it a problem of directory? I saved the sce file and the txt file in the > temporal directory of scilab. I dont think so. fscanfMat works only on files written by fprintfMat and yours doesn't seem compatible because it mixes tabs and spaces. I have tried the simple script: fd=mopen('proof.txt'); b=mfscanf(-1,fd,"%f %f %f %f %f %f %f\n"); mclose(fd); It works on your sample. mfscanf is for reading several lines with the same format (see help). It is a very useful function. HTH, Mathieu > Thanks > Chiara > From loic.girod at esstin.uhp-nancy.fr Fri Jul 1 14:21:42 2011 From: loic.girod at esstin.uhp-nancy.fr (=?iso-8859-1?Q?Lo=EFc_GIROD?=) Date: Fri, 1 Jul 2011 14:21:42 +0200 Subject: two questions : batch mode parameters and creating a menu to execute again a script or exit Message-ID: <000301cc37e9$706cfc00$5146f400$@esstin.uhp-nancy.fr> Hello all ! I wrote a script that can read binary files to draw curves from it. I?ve copied the script in /bin directory of scilab on a windows computer and I have created a shortcut on the desktop with the following parameters found on Internet : "C:\Program Files\scilab-5.3.2\bin\Scilex.exe" -nw ?f programme.sce. It alloy the user to run the script without loading the scilab graphic interface. Regarding this, I have two questions : 1) Do you know where I can find the signification of the parameters used ?nw ?f and if others exist ? 2) Using this method, the script only executes once. Indeed, at the end of the script, the user must kill the process to stop it, come back to the desktop and run again the script thanks to the shortcut. Is there a way to add a menu which ask the user if he would like to quit the script or to execute it again ? Many thanks for your help Best regards Lo?c -------------- next part -------------- An HTML attachment was scrubbed... URL: From sylvestre.ledru at scilab.org Fri Jul 1 14:26:55 2011 From: sylvestre.ledru at scilab.org (Sylvestre Ledru) Date: Fri, 01 Jul 2011 14:26:55 +0200 Subject: [scilab-Users] two questions : batch mode parameters and creating a menu to execute again a script or exit In-Reply-To: <000301cc37e9$706cfc00$5146f400$@esstin.uhp-nancy.fr> References: <000301cc37e9$706cfc00$5146f400$@esstin.uhp-nancy.fr> Message-ID: <1309523215.2740.56.camel@losinj.inria.fr> Le vendredi 01 juillet 2011 ? 14:21 +0200, Lo?c GIROD a ?crit : > Hello all ! > > > > I wrote a script that can read binary files to draw curves from it. > > I?ve copied the script in /bin directory of scilab on a windows > computer and I have created a shortcut on the desktop with the > following parameters found on Internet : "C:\Program Files > \scilab-5.3.2\bin\Scilex.exe" -nw ?f programme.sce. It alloy the user > to run the script without loading the scilab graphic interface. > > > > Regarding this, I have two questions : > > 1) Do you know where I can find the signification of the > parameters used ?nw ?f and if others exist ? See: http://help.scilab.org/docs/5.3.2/en_US/scilab.html > 2) Using this method, the script only executes once. Indeed, at > the end of the script, the user must kill the process to stop it, come > back to the desktop and run again the script thanks to the shortcut. > Is there a way to add a menu which ask the user if he would like to > quit the script or to execute it again ? You can manage that with some Scilab codes... Sylvestre From communication at scilab.org Fri Jul 1 14:27:23 2011 From: communication at scilab.org (Scilab Communication) Date: Fri, 01 Jul 2011 14:27:23 +0200 Subject: Scilab under Mac OS X 10.6.8 Message-ID: <4E0DBD2B.4020701@scilab.org> Dear Scilab users and developers, Following the last update of Apple Mac OS X version 10.6.8, Scilab 5.3.2 does not load properly. We have been working since the update to resolved the situation so that users can benefit again and as soon as possible of the features of Scilab under this platform. The bug fix will be part of Scilab 5.3.3 release planned for next weeks. Meanwhile you can download a developement version which works under Mac OS X 10.6.8 here: http://downloadarea.scilab.org/download/2011-06-30/scilab-branches-5.3-1309439969-x86_64.dmg For more information, you can report to the related bug (http://bugzilla.scilab.org/show_bug.cgi?id=9670) Best Regards ----------------------------------------------- The Scilab Consortium R&D Team ----------------------------------------------- Digiteo Domaine de Voluceau Rocquencourt - B.P. 105 78153 Le Chesnay Cedex - France From loic.girod at esstin.uhp-nancy.fr Fri Jul 1 15:41:19 2011 From: loic.girod at esstin.uhp-nancy.fr (=?UTF-8?Q?Lo=C3=AFc_GIROD?=) Date: Fri, 1 Jul 2011 15:41:19 +0200 Subject: [scilab-Users] two questions : batch mode parameters and creating a menu to execute again a script or exit In-Reply-To: <1309523215.2740.56.camel@losinj.inria.fr> References: <000301cc37e9$706cfc00$5146f400$@esstin.uhp-nancy.fr> <1309523215.2740.56.camel@losinj.inria.fr> Message-ID: <001b01cc37f4$8f721cb0$ae565610$@esstin.uhp-nancy.fr> Dear Sylvestre, Many thanks for the help for the first point, it's good. But for the second... I have thought about a "goto" function but not sure it's a good idea... Sorry but I get lost Lo?c -- -----Message d'origine----- De : Sylvestre Ledru [mailto:sylvestre.ledru at scilab.org] Envoy? : vendredi 1 juillet 2011 14:27 ? : users at lists.scilab.org Objet : Re: [scilab-Users] two questions : batch mode parameters and creating a menu to execute again a script or exit Le vendredi 01 juillet 2011 ? 14:21 +0200, Lo?c GIROD a ?crit : > Hello all ! > > > > I wrote a script that can read binary files to draw curves from it. > > I?ve copied the script in /bin directory of scilab on a windows > computer and I have created a shortcut on the desktop with the > following parameters found on Internet : "C:\Program Files > \scilab-5.3.2\bin\Scilex.exe" -nw ?f programme.sce. It alloy the user > to run the script without loading the scilab graphic interface. > > > > Regarding this, I have two questions : > > 1) Do you know where I can find the signification of the > parameters used ?nw ?f and if others exist ? See: http://help.scilab.org/docs/5.3.2/en_US/scilab.html > 2) Using this method, the script only executes once. Indeed, at > the end of the script, the user must kill the process to stop it, come > back to the desktop and run again the script thanks to the shortcut. > Is there a way to add a menu which ask the user if he would like to > quit the script or to execute it again ? You can manage that with some Scilab codes... Sylvestre From arawak1 at yahoo.com Fri Jul 1 16:39:16 2011 From: arawak1 at yahoo.com (raf .) Date: Fri, 1 Jul 2011 07:39:16 -0700 (PDT) Subject: [scilab-Users] Scilab under Mac OS X 10.6.8 In-Reply-To: <4E0DBD2B.4020701@scilab.org> References: <4E0DBD2B.4020701@scilab.org> Message-ID: <1309531156.79087.YahooMailNeo@web121603.mail.ne1.yahoo.com> Thanks for the info and the patch! ________________________________ From: Scilab Communication To: dev at lists.scilab.org; users at lists.scilab.org Sent: Friday, July 1, 2011 8:27 AM Subject: [scilab-Users] Scilab under Mac OS X 10.6.8 Dear Scilab users and developers, Following the last update of Apple Mac OS X version 10.6.8, Scilab 5.3.2 does not load properly. We have been working since the update to resolved the situation so that users can benefit again and as soon as possible of the features of Scilab under this platform. The bug fix will be part of Scilab 5.3.3 release planned for next weeks. Meanwhile you can download a developement version which works under Mac OS X 10.6.8 here: http://downloadarea.scilab.org/download/2011-06-30/scilab-branches-5.3-1309439969-x86_64.dmg For more information, you can report to the related bug (http://bugzilla.scilab.org/show_bug.cgi?id=9670) Best Regards ----------------------------------------------- The Scilab Consortium R&D Team ----------------------------------------------- Digiteo Domaine de Voluceau Rocquencourt - B.P. 105 78153 Le Chesnay Cedex - France -------------- next part -------------- An HTML attachment was scrubbed... URL: From stoerkle at eit.h-da.de Fri Jul 1 16:54:38 2011 From: stoerkle at eit.h-da.de (=?UTF-8?B?RGVuaXMgU3TDtnJrbGU=?=) Date: Fri, 01 Jul 2011 16:54:38 +0200 Subject: Code generation in Scilab/Xcos In-Reply-To: <9ed606ab4a9daf0d5a6e31fc862313f0@limsi.fr> References: <1308936151288-3105289.post@n3.nabble.com> <1308936800.15024.17.camel@Calixte-Dell> <4E04EC3C.2010201@limsi.fr> <1308953553377-3106501.post@n3.nabble.com> <9ed606ab4a9daf0d5a6e31fc862313f0@limsi.fr> Message-ID: <4E0DDFAE.8060004@eit.h-da.de> Hello Scilab Users, I would like to define a control algorithm in XCos and generate C-Code from it. In a second step I will integrate this in my existing toolchain and execute this control structure in a real time context. I started from the XCos CodeGen Demo controller.xcos, but I failed to compile the generated C-Code. Did anybody ever used the code generation yet? Is there a good manual/documentation for this (I only found documentation for Scicos) ? Is there a makefile generated as well? What libraries do I have to link and which directories do I have to include? Thank you very much in advance. Sincerely, Denis -- Denis St?rkle B.Sc. -stoerkle at eit.h-da.de Hochschule Darmstadt - University of Applied Sciences FB EIT - Fachbereich Elektrotechnik und Informationstechnik Birkenweg 8 D-64295 Darmstadt / Germany +49 175 5681559 From tiraduvidascefet at yahoo.com Sat Jul 2 14:11:44 2011 From: tiraduvidascefet at yahoo.com (Prof. Dr. Reinaldo Golmia Dante) Date: Sat, 2 Jul 2011 05:11:44 -0700 (PDT) Subject: [scilab-Users] Drawing Y-axis in graph In-Reply-To: References: <1309024905.23775.YahooMailNeo@web45505.mail.sp1.yahoo.com> <1309028666.18229.YahooMailNeo@web45507.mail.sp1.yahoo.com> Message-ID: <1309608704.4068.YahooMailNeo@web45502.mail.sp1.yahoo.com> Hi Scilab users, ? I would like to know the command to?move Y-axis in a graph like this enclosed file. ? Thank you in advance. ? All best, Reinaldo. ? ----- Forwarded Message ----- From: Sumit Adhikari To: users at lists.scilab.org Sent: Saturday, June 25, 2011 4:09 PM Subject: Re: [scilab-Users] Drawing Y-axis in graph That is what I see! Please check the attached pdf file for what I see Regards, --? Sumit Adhikari, Institute of Computer Technology, Faculty of Electrical Engineering, Vienna University of Technology, Gu?hausstra?e 27-29,1040 Vienna On Sat, Jun 25, 2011 at 9:04 PM, Prof. Dr. Reinaldo Golmia Dante wrote: Hi Sumit, >? >Do you see Y-axis at x = 0 ? >? >I don't see it ... >? >Regards, >Reinaldo. >? >From: Sumit Adhikari >To: users at lists.scilab.org >Sent: Saturday, June 25, 2011 3:18 PM >Subject: Re: [scilab-Users] Drawing Y-axis in graph > > > >But I see Y-axis in your plot on my scilab! > > >Regards, >--? >Sumit Adhikari, >Institute of Computer Technology, >Faculty of Electrical Engineering, >Vienna University of Technology, >Gu?hausstra?e 27-29,1040 Vienna > > > > >On Sat, Jun 25, 2011 at 8:01 PM, Prof. Dr. Reinaldo Golmia Dante wrote: > >Dear Scilab users, >>? >>I would like to draw Y-axis in a graph, but it does not display ! >>? >>See the Scilab-codes: >>?function f=funcao(x) f = 2*x*exp(-x^2); endfunction x_inicial = -4 x_final = 4 xdata = linspace ( x_inicial , x_final, 100); y_inicial = -1.0; y_final = 1.0; plot (xdata, funcao) xtitle ( "Fun??o" , "X axis " , "Y axis " ); drawaxis(x=x_inicial:x_final,y=0,dir='d',tics='v'); //Here X-axis displays drawaxis(y=y_inicial:y_final,x=0,dir='d',tics='v'); // I try to do the same, but Y-axis does not display :-((( legend ( "2*x*exp(-x^2)" ); I appreciate your comments. >>Thank you in advance. >>All best, >>Reinaldo. > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: xyaxis.pdf Type: application/pdf Size: 3393 bytes Desc: not available URL: From tiraduvidascefet at yahoo.com Sat Jul 2 14:14:36 2011 From: tiraduvidascefet at yahoo.com (Prof. Dr. Reinaldo Golmia Dante) Date: Sat, 2 Jul 2011 05:14:36 -0700 (PDT) Subject: [scilab-Users] Drawing Y-axis in graph In-Reply-To: <1309608704.4068.YahooMailNeo@web45502.mail.sp1.yahoo.com> References: <1309024905.23775.YahooMailNeo@web45505.mail.sp1.yahoo.com> <1309028666.18229.YahooMailNeo@web45507.mail.sp1.yahoo.com> <1309608704.4068.YahooMailNeo@web45502.mail.sp1.yahoo.com> Message-ID: <1309608876.29693.YahooMailNeo@web45510.mail.sp1.yahoo.com> Sorry, it isn't like that enclosed file. ? Unfortunately, I deleted the file. :-( ? Even that, I would like to know the command to move Y-axis in a graph. ? Tnx. Reinaldo.From: Prof. Dr. Reinaldo Golmia Dante To: Lista Scilab Sent: Saturday, July 2, 2011 9:11 AM Subject: [scilab-Users] Drawing Y-axis in graph Hi Scilab users, I would like to know the command to?move Y-axis in a graph like this enclosed file. Thank you in advance. All best, Reinaldo. ? ----- Forwarded Message ----- From: Sumit Adhikari To: users at lists.scilab.org Sent: Saturday, June 25, 2011 4:09 PM Subject: Re: [scilab-Users] Drawing Y-axis in graph That is what I see! Please check the attached pdf file for what I see Regards, --? Sumit Adhikari, Institute of Computer Technology, Faculty of Electrical Engineering, Vienna University of Technology, Gu?hausstra?e 27-29,1040 Vienna On Sat, Jun 25, 2011 at 9:04 PM, Prof. Dr. Reinaldo Golmia Dante wrote: Hi Sumit, >? >Do you see Y-axis at x = 0 ? >? >I don't see it ... >? >Regards, >Reinaldo. >? >From: Sumit Adhikari >To: users at lists.scilab.org >Sent: Saturday, June 25, 2011 3:18 PM >Subject: Re: [scilab-Users] Drawing Y-axis in graph > > > >But I see Y-axis in your plot on my scilab! > > >Regards, >--? >Sumit Adhikari, >Institute of Computer Technology, >Faculty of Electrical Engineering, >Vienna University of Technology, >Gu?hausstra?e 27-29,1040 Vienna > > > > >On Sat, Jun 25, 2011 at 8:01 PM, Prof. Dr. Reinaldo Golmia Dante wrote: > >Dear Scilab users, >>? >>I would like to draw Y-axis in a graph, but it does not display ! >>? >>See the Scilab-codes: >>?function f=funcao(x) f = 2*x*exp(-x^2); endfunction x_inicial = -4 x_final = 4 xdata = linspace ( x_inicial , x_final, 100); y_inicial = -1.0; y_final = 1.0; plot (xdata, funcao) xtitle ( "Fun??o" , "X axis " , "Y axis " ); drawaxis(x=x_inicial:x_final,y=0,dir='d',tics='v'); //Here X-axis displays drawaxis(y=y_inicial:y_final,x=0,dir='d',tics='v'); // I try to do the same, but Y-axis does not display :-((( legend ( "2*x*exp(-x^2)" ); I appreciate your comments. >>Thank you in advance. >>All best, >>Reinaldo. > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Samuel.Gougeon at univ-lemans.fr Sat Jul 2 14:19:45 2011 From: Samuel.Gougeon at univ-lemans.fr (Samuel GOUGEON) Date: Sat, 02 Jul 2011 14:19:45 +0200 Subject: [scilab-Users] Drawing Y-axis in graph In-Reply-To: <1309608876.29693.YahooMailNeo@web45510.mail.sp1.yahoo.com> References: <1309024905.23775.YahooMailNeo@web45505.mail.sp1.yahoo.com> <1309028666.18229.YahooMailNeo@web45507.mail.sp1.yahoo.com> <1309608704.4068.YahooMailNeo@web45502.mail.sp1.yahoo.com> <1309608876.29693.YahooMailNeo@web45510.mail.sp1.yahoo.com> Message-ID: <4E0F0CE1.3090006@univ-lemans.fr> ----- Message d'origine ----- De : Prof. Dr. Reinaldo Golmia Dante Date : 02/07/2011 14:14: > Sorry, it isn't like that enclosed file. > Unfortunately, I deleted the file. :-( > Even that, I would like to know the command to move Y-axis in a graph. Do you mean putting it to the center or to the right, instead of on the left? plot2d() a=gca(); a.y_location="middle"; // Look at the figure a.y_location="right"; // Look at the figure Samuel -------------- next part -------------- An HTML attachment was scrubbed... URL: From tiraduvidascefet at yahoo.com Sat Jul 2 14:21:52 2011 From: tiraduvidascefet at yahoo.com (Prof. Dr. Reinaldo Golmia Dante) Date: Sat, 2 Jul 2011 05:21:52 -0700 (PDT) Subject: [scilab-Users] Drawing Y-axis in graph In-Reply-To: <1309608876.29693.YahooMailNeo@web45510.mail.sp1.yahoo.com> References: <1309024905.23775.YahooMailNeo@web45505.mail.sp1.yahoo.com> <1309028666.18229.YahooMailNeo@web45507.mail.sp1.yahoo.com> <1309608704.4068.YahooMailNeo@web45502.mail.sp1.yahoo.com> <1309608876.29693.YahooMailNeo@web45510.mail.sp1.yahoo.com> Message-ID: <1309609312.38908.YahooMailNeo@web45509.mail.sp1.yahoo.com> Hi again, ? For example: in the following Scilab code, how could I move the Y-axis to the centre of graph ? ?function f=funcao(x) f = 1/x; endfunction x_inicial = -1; x_final = 1; n = 100; // number of points xdata = linspace ( x_inicial , x_final, n); for i = 1:n f1(i) = funcao(xdata(i)); end y_inicial = min(f1); y_final = max(f1); plot (xdata, funcao) xgrid(color("grey")) xtitle ( "Fun??o" , "X axis " , "Y axis " ); drawaxis(x=x_inicial:0.5:x_final,y=0,dir='d',tics='v'); //Here X-axis displays legend ( "y = 1/x" ); ? Thank you in advance. ? All best, Reinaldo. ? ? ----- Forwarded Message ----- From: Sumit Adhikari To: users at lists.scilab.org Sent: Saturday, June 25, 2011 4:09 PM Subject: Re: [scilab-Users] Drawing Y-axis in graph That is what I see! Please check the attached pdf file for what I see Regards, --? Sumit Adhikari, Institute of Computer Technology, Faculty of Electrical Engineering, Vienna University of Technology, Gu?hausstra?e 27-29,1040 Vienna On Sat, Jun 25, 2011 at 9:04 PM, Prof. Dr. Reinaldo Golmia Dante wrote: Hi Sumit, >? >Do you see Y-axis at x = 0 ? >? >I don't see it ... >? >Regards, >Reinaldo. >? >From: Sumit Adhikari >To: users at lists.scilab.org >Sent: Saturday, June 25, 2011 3:18 PM >Subject: Re: [scilab-Users] Drawing Y-axis in graph > > > >But I see Y-axis in your plot on my scilab! > > >Regards, >--? >Sumit Adhikari, >Institute of Computer Technology, >Faculty of Electrical Engineering, >Vienna University of Technology, >Gu?hausstra?e 27-29,1040 Vienna > > > > >On Sat, Jun 25, 2011 at 8:01 PM, Prof. Dr. Reinaldo Golmia Dante wrote: > >Dear Scilab users, >>? >>I would like to draw Y-axis in a graph, but it does not display ! >>? >>See the Scilab-codes: >>?function f=funcao(x) f = 2*x*exp(-x^2); endfunction x_inicial = -4 x_final = 4 xdata = linspace ( x_inicial , x_final, 100); y_inicial = -1.0; y_final = 1.0; plot (xdata, funcao) xtitle ( "Fun??o" , "X axis " , "Y axis " ); drawaxis(x=x_inicial:x_final,y=0,dir='d',tics='v'); //Here X-axis displays drawaxis(y=y_inicial:y_final,x=0,dir='d',tics='v'); // I try to do the same, but Y-axis does not display :-((( legend ( "2*x*exp(-x^2)" ); I appreciate your comments. >>Thank you in advance. >>All best, >>Reinaldo. > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: graph.png Type: image/png Size: 8084 bytes Desc: not available URL: From tiraduvidascefet at yahoo.com Sat Jul 2 14:23:46 2011 From: tiraduvidascefet at yahoo.com (Prof. Dr. Reinaldo Golmia Dante) Date: Sat, 2 Jul 2011 05:23:46 -0700 (PDT) Subject: [scilab-Users] Drawing Y-axis in graph In-Reply-To: <4E0F0CE1.3090006@univ-lemans.fr> References: <1309024905.23775.YahooMailNeo@web45505.mail.sp1.yahoo.com> <1309028666.18229.YahooMailNeo@web45507.mail.sp1.yahoo.com> <1309608704.4068.YahooMailNeo@web45502.mail.sp1.yahoo.com> <1309608876.29693.YahooMailNeo@web45510.mail.sp1.yahoo.com> <4E0F0CE1.3090006@univ-lemans.fr> Message-ID: <1309609426.85470.YahooMailNeo@web45501.mail.sp1.yahoo.com> Hi Samuel, ? Looking the Scilab code, what do I need to modify to move Y-axis to the centre of graph ? ? Reinaldo. ? ? From: Samuel GOUGEON To: users at lists.scilab.org Sent: Saturday, July 2, 2011 9:19 AM Subject: Re: [scilab-Users] Drawing Y-axis in graph ----- Message d'origine ----- De : Prof. Dr. Reinaldo Golmia Dante Date : 02/07/2011 14:14: Sorry, it isn't like that enclosed file. >? >Unfortunately, I deleted the file. :-( >? >Even that, I would like to know the command to move Y-axis in a graph. Do you mean putting it to the center or to the right, instead of on the left? plot2d() a=gca(); a.y_location="middle";? // Look at the figure a.y_location="right";??? // Look at the figure Samuel -------------- next part -------------- An HTML attachment was scrubbed... URL: From tiraduvidascefet at yahoo.com Sat Jul 2 14:26:16 2011 From: tiraduvidascefet at yahoo.com (Prof. Dr. Reinaldo Golmia Dante) Date: Sat, 2 Jul 2011 05:26:16 -0700 (PDT) Subject: [scilab-Users] Drawing Y-axis in graph In-Reply-To: <1309609426.85470.YahooMailNeo@web45501.mail.sp1.yahoo.com> References: <1309024905.23775.YahooMailNeo@web45505.mail.sp1.yahoo.com> <1309028666.18229.YahooMailNeo@web45507.mail.sp1.yahoo.com> <1309608704.4068.YahooMailNeo@web45502.mail.sp1.yahoo.com> <1309608876.29693.YahooMailNeo@web45510.mail.sp1.yahoo.com> <4E0F0CE1.3090006@univ-lemans.fr> <1309609426.85470.YahooMailNeo@web45501.mail.sp1.yahoo.com> Message-ID: <1309609576.79511.YahooMailNeo@web45510.mail.sp1.yahoo.com> woww .. I got it !! ? Thank you ! ?From: Prof. Dr. Reinaldo Golmia Dante To: "users at lists.scilab.org" Sent: Saturday, July 2, 2011 9:23 AM Subject: Re: [scilab-Users] Drawing Y-axis in graph Hi Samuel, ? Looking the Scilab code, what do I need to modify to move Y-axis to the centre of graph ? Reinaldo. From: Samuel GOUGEON To: users at lists.scilab.org Sent: Saturday, July 2, 2011 9:19 AM Subject: Re: [scilab-Users] Drawing Y-axis in graph ----- Message d'origine ----- De : Prof. Dr. Reinaldo Golmia Dante Date : 02/07/2011 14:14: Sorry, it isn't like that enclosed file. >? >Unfortunately, I deleted the file. :-( >? >Even that, I would like to know the command to move Y-axis in a graph. Do you mean putting it to the center or to the right, instead of on the left? plot2d() a=gca(); a.y_location="middle";? // Look at the figure a.y_location="right";??? // Look at the figure Samuel -------------- next part -------------- An HTML attachment was scrubbed... URL: From tiraduvidascefet at yahoo.com Sat Jul 2 14:39:10 2011 From: tiraduvidascefet at yahoo.com (Prof. Dr. Reinaldo Golmia Dante) Date: Sat, 2 Jul 2011 05:39:10 -0700 (PDT) Subject: [scilab-Users] Drawing Y-axis in graph Message-ID: <1309610350.78473.YahooMailNeo@web45506.mail.sp1.yahoo.com> Hi Samuel, And how can I do to keep the title "Y-axis on the left" and the title "X-axis bellow" ? Run the code: function f=funcao(x) f = x*sin(x); endfunction x_inicial = -10; x_final = 10; n = 100; // number of points xdata = linspace ( x_inicial , x_final, n); for i = 1:n f1(i) = funcao(xdata(i)); end y_inicial = min(f1); y_final = max(f1); plot (xdata, funcao) xgrid(color("grey")) xtitle ( "Fun??o" , "X axis " , "Y axis " ); a=gca(); a.y_location="middle"; // Here X-axis displays in the centre of graph b=gca(); b.x_location="middle"; // Here Y-axis displays in the centre of graph //drawaxis(x=x_inicial:x_final,y=0,dir='d',tics='v'); //Here X-axis displays //drawaxis(y=-6:0.5:8,x=0,dir='r',tics='v',sub_int=2); //drawaxis(y=y_inicial:y_final,x=0,dir='r',tics='v'); // Here Y-axis displays legend ( "x sin(x)" ); Thank you. Reinaldo. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Samuel.Gougeon at univ-lemans.fr Sat Jul 2 14:47:05 2011 From: Samuel.Gougeon at univ-lemans.fr (Samuel GOUGEON) Date: Sat, 02 Jul 2011 14:47:05 +0200 Subject: [scilab-Users] Drawing Y-axis in graph In-Reply-To: <1309609576.79511.YahooMailNeo@web45510.mail.sp1.yahoo.com> References: <1309024905.23775.YahooMailNeo@web45505.mail.sp1.yahoo.com> <1309028666.18229.YahooMailNeo@web45507.mail.sp1.yahoo.com> <1309608704.4068.YahooMailNeo@web45502.mail.sp1.yahoo.com> <1309608876.29693.YahooMailNeo@web45510.mail.sp1.yahoo.com> <4E0F0CE1.3090006@univ-lemans.fr> <1309609426.85470.YahooMailNeo@web45501.mail.sp1.yahoo.com> <1309609576.79511.YahooMailNeo@web45510.mail.sp1.yahoo.com> Message-ID: <4E0F1349.2000502@univ-lemans.fr> ----- Message d'origine ----- De : Prof. Dr. Reinaldo Golmia Dante Date : 02/07/2011 14:39: > Hi Samuel, > And how can I do to keep the title "Y-axis on the left" and the title "X-axis > bellow" ? > Run the code: .../... you don't need to do b=gca(); after a=gca(); a is still valid and contains all properties, including x_location. a.x_label.position(2)=-7; a.y_label.position(1)=-11; look at: help axes_properties help gca Samuel -------------- next part -------------- An HTML attachment was scrubbed... URL: From tiraduvidascefet at yahoo.com Sat Jul 2 15:38:30 2011 From: tiraduvidascefet at yahoo.com (Prof. Dr. Reinaldo Golmia Dante) Date: Sat, 2 Jul 2011 06:38:30 -0700 (PDT) Subject: [scilab-Users] Drawing Y-axis in graph In-Reply-To: <4E0F1349.2000502@univ-lemans.fr> References: <1309024905.23775.YahooMailNeo@web45505.mail.sp1.yahoo.com> <1309028666.18229.YahooMailNeo@web45507.mail.sp1.yahoo.com> <1309608704.4068.YahooMailNeo@web45502.mail.sp1.yahoo.com> <1309608876.29693.YahooMailNeo@web45510.mail.sp1.yahoo.com> <4E0F0CE1.3090006@univ-lemans.fr> <1309609426.85470.YahooMailNeo@web45501.mail.sp1.yahoo.com> <1309609576.79511.YahooMailNeo@web45510.mail.sp1.yahoo.com> <4E0F1349.2000502@univ-lemans.fr> Message-ID: <1309613910.49672.YahooMailNeo@web45505.mail.sp1.yahoo.com> Thank you for your hints, Samuel ! ? When I read the Scilab help,?I often miss more examples about the commands ... ? All best, Reinaldo ? From: Samuel GOUGEON To: users at lists.scilab.org Sent: Saturday, July 2, 2011 9:47 AM Subject: Re: [scilab-Users] Drawing Y-axis in graph ----- Message d'origine ----- De : Prof. Dr. Reinaldo Golmia Dante Date : 02/07/2011 14:39: Hi Samuel, >And how can I do to keep the title "Y-axis on the left" and the title "X-axis bellow" ? >Run the code: .../... > you don't need to do b=gca(); after a=gca(); a is still valid and contains all properties, including x_location. a.x_label.position(2)=-7; a.y_label.position(1)=-11; look at: help axes_properties help gca Samuel -------------- next part -------------- An HTML attachment was scrubbed... URL: From loic.girod at esstin.uhp-nancy.fr Sun Jul 3 09:14:06 2011 From: loic.girod at esstin.uhp-nancy.fr (=?utf-8?Q?Lo=C3=AFc_GIROD?=) Date: Sun, 3 Jul 2011 09:14:06 +0200 Subject: [scilab-Users] two questions : batch mode parameters and creating a menu to execute again a script or exit References: <000301cc37e9$706cfc00$5146f400$@esstin.uhp-nancy.fr> <1309523215.2740.56.camel@losinj.inria.fr> Message-ID: <000001cc3950$cc2e3910$648aab30$@esstin.uhp-nancy.fr> Dear all, I succeeded to create a x_choose menu with two possibilities : - quit scilab = it works well - execute the script again = not working With my very basic programming skills, I have tried to use a "goto - from" instruction (I've read on many forums that this seems to be a very bad thing...) but I get an error 34. To put it in a nutshell, here is a sample of the script in this part : ___________ from test; choix=x_choose([Draw a new curve';'Quit'],['Please choose an item']) if choix==1 then GOTO test; else quit end ___________ Second question regarding this dialog box, I would like it to appear only in "second plane". Indeed, my script draws a curve and just after, the dialog box appears and I can't anymore interact with the graph. How can I do that ? Many thanks for your help. Best regards Lo?c -- -----Message d'origine----- De : Lo?c GIROD [mailto:loic.girod at esstin.uhp-nancy.fr] Envoy? : vendredi 1 juillet 2011 15:41 ? : 'users at lists.scilab.org' Objet : RE: [scilab-Users] two questions : batch mode parameters and creating a menu to execute again a script or exit Dear Sylvestre, Many thanks for the help for the first point, it's good. But for the second... I have thought about a "goto" function but not sure it's a good idea... Sorry but I get lost Lo?c -- -----Message d'origine----- De : Sylvestre Ledru [mailto:sylvestre.ledru at scilab.org] Envoy? : vendredi 1 juillet 2011 14:27 ? : users at lists.scilab.org Objet : Re: [scilab-Users] two questions : batch mode parameters and creating a menu to execute again a script or exit Le vendredi 01 juillet 2011 ? 14:21 +0200, Lo?c GIROD a ?crit : > Hello all ! > > > > I wrote a script that can read binary files to draw curves from it. > > I?ve copied the script in /bin directory of scilab on a windows > computer and I have created a shortcut on the desktop with the > following parameters found on Internet : "C:\Program Files > \scilab-5.3.2\bin\Scilex.exe" -nw ?f programme.sce. It alloy the user > to run the script without loading the scilab graphic interface. > > > > Regarding this, I have two questions : > > 1) Do you know where I can find the signification of the > parameters used ?nw ?f and if others exist ? See: http://help.scilab.org/docs/5.3.2/en_US/scilab.html > 2) Using this method, the script only executes once. Indeed, at > the end of the script, the user must kill the process to stop it, come > back to the desktop and run again the script thanks to the shortcut. > Is there a way to add a menu which ask the user if he would like to > quit the script or to execute it again ? You can manage that with some Scilab codes... Sylvestre From coolnish2k at hotmail.com Sun Jul 3 11:34:27 2011 From: coolnish2k at hotmail.com (nishnish) Date: Sun, 3 Jul 2011 02:34:27 -0700 (PDT) Subject: Problems with scilab execution and error .. pls help ! Message-ID: <1309685667871-3134398.post@n3.nabble.com> hi , i tried to execute certain commands but the following comes up scilab has found a critical error (EXCEPTION_ACCESS_VIOLATION) save your data and restart scilab. usually this message comes up when i try using the for loop eg. for i = 1:5 disp(i) and then nothing gets displayed and after a while the message above pops up ! help pls ! -- View this message in context: http://mailinglists.scilab.org/Problems-with-scilab-execution-and-error-pls-help-tp3134398p3134398.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From grocer.toolbox at gmail.com Sun Jul 3 11:39:00 2011 From: grocer.toolbox at gmail.com (Eric Dubois) Date: Sun, 3 Jul 2011 11:39:00 +0200 Subject: [scilab-Users] Problems with scilab execution and error .. pls help ! In-Reply-To: <1309685667871-3134398.post@n3.nabble.com> References: <1309685667871-3134398.post@n3.nabble.com> Message-ID: An what if you close your loop with an end? ?ric. 2011/7/3 nishnish > hi , > > i tried to execute certain commands > but the following comes up > > scilab has found a critical error (EXCEPTION_ACCESS_VIOLATION) > save your data and restart scilab. > > usually this message comes up when i try using the for loop > > eg. > > for i = 1:5 > disp(i) > > and then nothing gets displayed > > and after a while the message above pops up ! > help pls ! > > -- > View this message in context: > http://mailinglists.scilab.org/Problems-with-scilab-execution-and-error-pls-help-tp3134398p3134398.html > Sent from the Scilab users - Mailing Lists Archives mailing list archive at > Nabble.com. > -------------- next part -------------- An HTML attachment was scrubbed... URL: From coolnish2k at hotmail.com Sun Jul 3 13:49:50 2011 From: coolnish2k at hotmail.com (nishnish) Date: Sun, 3 Jul 2011 04:49:50 -0700 (PDT) Subject: SCILAB startup file help Message-ID: <1309693790573-3134581.post@n3.nabble.com> I followed the instructions on the scilab website about getting oriented with SCILAB and i read abt the SCIHOME variable, I followed that website location into my C drive and i ended up at a directory where there was only 1 scilab file about the scilab history. The start-up .scilab file was not in the folder . I want to make my library available at startup , but for that i have to put the location into the startup file. But i could not find the startup file. Is there any way of locating / creating it ? Any help is greatly appreciated ! thanks ! -- View this message in context: http://mailinglists.scilab.org/SCILAB-startup-file-help-tp3134581p3134581.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From mathieu.dubois at limsi.fr Sun Jul 3 21:49:33 2011 From: mathieu.dubois at limsi.fr (Mathieu Dubois) Date: Sun, 03 Jul 2011 21:49:33 +0200 Subject: [scilab-Users] SCILAB startup file help In-Reply-To: <1309693790573-3134581.post@n3.nabble.com> References: <1309693790573-3134581.post@n3.nabble.com> Message-ID: <4E10C7CD.6020908@limsi.fr> Hello, The help states that the files are exectuted if present. So simply create one of them and put your commands in. If you want this behaviour for every user, edit SCI/scilab.star. HTH, Mathieu Le 03/07/2011 13:49, nishnish a ?crit : > I followed the instructions on the scilab website about getting oriented with > SCILAB and i read abt the SCIHOME variable, > I followed that website location into my C drive and i ended up at a > directory where there was only 1 scilab file about the scilab history. The > start-up .scilab file was not in the folder . > I want to make my library available at startup , but for that i have to put > the location into the startup file. But i could not find the startup file. > Is there any way of locating / creating it ? > Any help is greatly appreciated ! > thanks ! > > -- > View this message in context: http://mailinglists.scilab.org/SCILAB-startup-file-help-tp3134581p3134581.html > Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From berns.buenaobra at gmail.com Mon Jul 4 00:16:34 2011 From: berns.buenaobra at gmail.com (Berns Buenaobra) Date: Mon, 4 Jul 2011 06:16:34 +0800 Subject: Scilab and GPU general programming Message-ID: Hello: This maybe asking to much but I would like to inquire anyway from the developers. Is this is a direction or a future route to make a jacket of Scilab to GPU? If at all 1000s of threads in 100s core NVIDIA graphics hardware would help in rocket boosting simulation speed and computations in Scilab. For the basics of GPU computating see for example: http://www.nvidia.com/object/GPU_Computing.html Just a thought and inquiry of course. Regards, Berns B. University of San Carlos Dept. of Physics (Philippines) Medical Biophysics Research Group -------------- next part -------------- An HTML attachment was scrubbed... URL: From cedric.delamarre at scilab.org Mon Jul 4 09:38:40 2011 From: cedric.delamarre at scilab.org (=?ISO-8859-1?Q?C=E9dric?= Delamarre) Date: Mon, 04 Jul 2011 09:38:40 +0200 Subject: [scilab-Users] Scilab and GPU general programming In-Reply-To: References: Message-ID: <1309765120.1631.4.camel@ced-T7400> Le lundi 04 juillet 2011 ? 06:16 +0800, Berns Buenaobra a ?crit : > Hello: > > This maybe asking to much but I would like to inquire anyway from the > developers. Is this is a direction or a future route to make a jacket > of Scilab to GPU? If at all 1000s of threads in 100s core NVIDIA > graphics hardware would help in rocket boosting simulation speed and > computations in Scilab. For the basics of GPU computating see for > example: http://www.nvidia.com/object/GPU_Computing.html > > Just a thought and inquiry of course. > > Regards, > > Berns B. > University of San Carlos Dept. of Physics (Philippines) > Medical Biophysics Research Group > Hello, Scilab has a toolbox which provides some functions to compute a kernel on the GPU. To use this toolbox, make sure that your GPU is an Nvidia card and has double capability. You need to compile the toolbox before use it. Sources of toolbox sciGPGPU : http://forge.scilab.org/index.php/p/sciCuda/ If you have any question dont hesitate to email me. Regards, -- ----------------------------- C?dric DELAMARRE Software Development Engineer Consortium Scilab Digiteo Domaine de Voluceau Rocquencourt - B.P. 105 78153 Le Chesnay Cedex France T?l. : +33.1.39.63.55.91 ----------------------------- From Vincent.Perrouin at cemagref.fr Mon Jul 4 10:06:56 2011 From: Vincent.Perrouin at cemagref.fr (Perrouin Vincent) Date: Mon, 4 Jul 2011 10:06:56 +0200 Subject: output format of the timer() function Message-ID: Hi, I'm using the timer() function on scilab 3..1 and I want to know in which format is the output of this function. In fact on the help page it is written "Returns the CPU time since the preceding call to timer()." and "CPU time is the number of processor cycles used for a computation". In understood this function is a tool to compare CPU usage between different programs and it is not equivalent to real-wolrd time, but what is the unit of measure : second ? millisecond? Number of cycle, in this case shall we multiply it by the frequency of processor ? Thank you for your answer, Vincent P. -------------- next part -------------- An HTML attachment was scrubbed... URL: From denis.crete at thalesgroup.com Mon Jul 4 12:04:03 2011 From: denis.crete at thalesgroup.com (CRETE Denis) Date: Mon, 4 Jul 2011 12:04:03 +0200 Subject: [scilab-Users] Problems with scilab execution and error .. pls help ! In-Reply-To: <1309685667871-3134398.post@n3.nabble.com> References: <1309685667871-3134398.post@n3.nabble.com> Message-ID: <19810_1309773855_4E11901F_19810_14689_1_908CBC9017354841B2F32BBEC70A05A101C3560F4F93@THSONEA01CMS01P.one.grp> Hello, it works fine for me on Scilab 5.3.2 (I just added "end;" to close the for loop). Denis -----Message d'origine----- De?: nishnish [mailto:coolnish2k at hotmail.com] Envoy??: dimanche 3 juillet 2011 11:34 ??: users at lists.scilab.org Objet?: [scilab-Users] Problems with scilab execution and error .. pls help ! hi , i tried to execute certain commands but the following comes up scilab has found a critical error (EXCEPTION_ACCESS_VIOLATION) save your data and restart scilab. usually this message comes up when i try using the for loop eg. for i = 1:5 disp(i) and then nothing gets displayed and after a while the message above pops up ! help pls ! -- View this message in context: http://mailinglists.scilab.org/Problems-with-scilab-execution-and-error-pls-help-tp3134398p3134398.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From Vincent.Perrouin at cemagref.fr Mon Jul 4 12:24:51 2011 From: Vincent.Perrouin at cemagref.fr (Perrouin Vincent) Date: Mon, 4 Jul 2011 12:24:51 +0200 Subject: output format of the timer() function Message-ID: Hi, I'm using the timer() function on scilab 3..1 and I want to know in which format is the output of this function. In fact on the help page it is written "Returns the CPU time since the preceding call to timer()." and "CPU time is the number of processor cycles used for a computation". In understood this function is a tool to compare CPU usage between different programs and it is not equivalent to real-wolrd time, but what is the unit of measure : second ? millisecond? Number of cycle, in this case shall we multiply it by the frequency of processor ? Thank you for your answer, Vincent P. -------------- next part -------------- An HTML attachment was scrubbed... URL: From heinznabielek at me.com Mon Jul 4 12:51:21 2011 From: heinznabielek at me.com (Heinz Nabielek) Date: Mon, 4 Jul 2011 10:51:21 +0000 (UTC) Subject: Scilab quit unexpectedly Message-ID: Once again, after half a year, I get the message Scilab quit unexpectedly when attempting to start SciLab. Then, the recommendation was to rearrange the Java versions on my Mac OS X 10.6 with "Drag to change the preferred order" in the Java Preferences window. Now, with Mac OS X 10.6.8 and a recent Java update, it does not work any more? What can I do to get SciLab started? Heinz From coolnish2k at hotmail.com Mon Jul 4 16:12:38 2011 From: coolnish2k at hotmail.com (nishnish) Date: Mon, 4 Jul 2011 07:12:38 -0700 (PDT) Subject: SCILAB startup file help In-Reply-To: <4E10C7CD.6020908@limsi.fr> References: <1309693790573-3134581.post@n3.nabble.com> <4E10C7CD.6020908@limsi.fr> Message-ID: <1309788758420-3137667.post@n3.nabble.com> HI Mathieu, firstly thanks for the reply. i tried to create a .scilab file in the folder but i dun really know how to create it . i moved my mouse over "new" but theres no option to create a .scilab file and also, what does edit SCI/scilab.star. mean ? thanks for all ur help once again !!! -- View this message in context: http://mailinglists.scilab.org/SCILAB-startup-file-help-tp3134581p3137667.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From mathieu.dubois at limsi.fr Mon Jul 4 17:02:29 2011 From: mathieu.dubois at limsi.fr (Mathieu Dubois) Date: Mon, 04 Jul 2011 17:02:29 +0200 Subject: [scilab-Users] Re: SCILAB startup file help In-Reply-To: <1309788758420-3137667.post@n3.nabble.com> References: <1309693790573-3134581.post@n3.nabble.com> <4E10C7CD.6020908@limsi.fr> <1309788758420-3137667.post@n3.nabble.com> Message-ID: <4E11D605.8020501@limsi.fr> On 07/04/2011 04:12 PM, nishnish wrote: > HI Mathieu, > firstly thanks for the reply. > i tried to create a .scilab file in the folder but i dun really know how to > create it . i moved my mouse over "new" but theres no option to create a > .scilab file You can create the file with any editor you want for instance the one in scilab (Applications -> SciNotes). Just create a new document and save it in SCIHOME. Note that under Linux, files whose name starts with a dot (.) are hidden by convention. You can however see them under nautilus ("the" file explorer) with "View->Show hidden file". For those reason it is easier to create scilab.ini. > and also, what does edit SCI/scilab.star. mean ? scilab.star (in directory given by the SCI variable) is another startup file. The advantage is that it is the same file for every user. > thanks for all ur help once again !!! > > -- > View this message in context: http://mailinglists.scilab.org/SCILAB-startup-file-help-tp3134581p3137667.html > Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From ray at aarden.us Mon Jul 4 17:44:17 2011 From: ray at aarden.us (ray at aarden.us) Date: Mon, 04 Jul 2011 08:44:17 -0700 Subject: XCOS Isn't Finding Compiler Message-ID: <20110704084417.1753ead7c2b35a7d15c5b99498690bcc.96778bc1ec.wbe@email11.secureserver.net> An HTML attachment was scrubbed... URL: From stoerkle at eit.h-da.de Mon Jul 4 17:45:53 2011 From: stoerkle at eit.h-da.de (=?ISO-8859-1?Q?Denis_St=F6rkle?=) Date: Mon, 04 Jul 2011 17:45:53 +0200 Subject: Scilab/XCos Code generation linker problems during compilation Message-ID: <4E11E031.1060106@eit.h-da.de> Hello Scilab Users, I am currently working on my Masterthesis in electrical engineering, where I would like to define a control algorithm in XCos and generate C-Code from it. In a second step I will integrate this in my existing toolchain and execute this control structure in a real time context. I started from the XCos CodeGen Demo "controller.xcos", but I failed to compile the generated C-Code. I always get the same error messages from the liker. Apparently the implementation of the functions "dsslti_" and "samphold_" can not be found be the linker: [...] /tmp/ccemyMgn.o: In function `Controller_sim': Controller_standalone.c:(.text+0xa7f): undefined reference to `dsslti_' Controller_standalone.c:(.text+0xb44): undefined reference to `samphold_' Controller_standalone.c:(.text+0xdee): undefined reference to `samphold_' Controller_standalone.c:(.text+0xeb3): undefined reference to `dsslti_' Controller_standalone.c:(.text+0x1016): undefined reference to `dsslti_' Controller_standalone.c:(.text+0x10e7): undefined reference to `dsslti_' Controller_standalone.c:(.text+0x11ac): undefined reference to `samphold_' collect2: ld returned 1 exit status make: *** [all] Error 1 Did anybody ever used the code generation yet? Is there a good manual/documentation for this (I only found documentation for Scicoslab/Scicos where a makefile is generated automatically with the C code) ? Is there a makefile generated as well? What libraries do I have to link and which directories do I have to include? Thank you very much in advance. Sincerely, Denis From coolnish2k at hotmail.com Mon Jul 4 17:47:29 2011 From: coolnish2k at hotmail.com (nishnish) Date: Mon, 4 Jul 2011 08:47:29 -0700 (PDT) Subject: SCILAB startup file help In-Reply-To: <4E11D605.8020501@limsi.fr> References: <1309693790573-3134581.post@n3.nabble.com> <4E10C7CD.6020908@limsi.fr> <1309788758420-3137667.post@n3.nabble.com> <4E11D605.8020501@limsi.fr> Message-ID: <1309794449309-3137959.post@n3.nabble.com> Thank u Mathieu ! It works perfectly now !!! thanks !! appreciate it :) -- View this message in context: http://mailinglists.scilab.org/SCILAB-startup-file-help-tp3134581p3137959.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From janisj at latnet.lv Mon Jul 4 23:27:32 2011 From: janisj at latnet.lv (janis) Date: Mon, 4 Jul 2011 14:27:32 -0700 (PDT) Subject: api scilab integer read write Message-ID: <1309814852209-3138972.post@n3.nabble.com> I tried to run example of Scilab C interface using api. Gateway compilation and loading seems to be working fine but examples do not work correctly for me. 1. The first double reading example a2 works fine, but the second example b2 with imaginary parts does not. http://help.scilab.org/docs/5.3.2/en_US/Double_management_reading_API.html 2. The results of integer reading example read_integer are the same as inputs i.e. a8=c8 and so on... 3. The double writing example. http://help.scilab.org/docs/5.3.2/en_US/Double_management_writing_API.html Gives error: [a,b] = write_double(); !--error 1 Incorrect assignment. Any ideas what's wrong? 4. Is it normal that alongside "api_scilab.h" I have to include also "stack-c.h". Without it I have errors like: 'Rhs' undeclared (first use in this function). thanks janis. -- View this message in context: http://mailinglists.scilab.org/api-scilab-integer-read-write-tp3138972p3138972.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From jlvolta at fibertel.com.py Tue Jul 5 04:04:03 2011 From: jlvolta at fibertel.com.py (=?iso-8859-1?Q?Jos=E9_Luis_Volta_Grau?=) Date: Mon, 4 Jul 2011 22:04:03 -0400 Subject: Editvar doesn't display small numbers Message-ID: Hi, all: When I write small numbers in the Editvar cells, i.e. 0.00000123, it just shows 0 I haven't found options to format the cells; is there a way to see the whole digits of this numbers ? Scilab 5.3.0, 5.3.1, 5.3.2 Scilab 5.2.2 works fine. OS: Ubuntu Linux 10.04; Windows XP SP2,SP3 Thanks in advance; J.L.V. -------------- next part -------------- An HTML attachment was scrubbed... URL: From chi.venier at gmail.com Mon Jul 4 17:12:12 2011 From: chi.venier at gmail.com (Chiara) Date: Mon, 4 Jul 2011 08:12:12 -0700 (PDT) Subject: uploading a file txt In-Reply-To: <4E0DB647.8050001@limsi.fr> References: <4E00B2D2.3040807@limsi.fr> <4E0DB647.8050001@limsi.fr> Message-ID: <1309792332049-3137851.post@n3.nabble.com> Thanks a lot for your advise! Yes, is working now, except in the following case. Trying with this different matrix is not working anymore: 40719 -2.47 34.57 22.20 74.05 40719 0 40719 -2.51 34.57 22.20 73.77 40719 0 40719 -2.52 34.57 22.20 73.65 40719 0 40719 -2.44 34.57 22.20 73.57 40719 0 40719 -2.56 34.57 22.20 73.97 40719 0 40719 -2.41 34.57 22.20 74.73 40719 0 40719 -2.44 34.57 22.20 75.20 40719 0 40719 -2.32 34.57 22.20 75.32 40719 0 40719 -2.36 34.57 22.20 74.96 40719 0 40719 -2.25 34.58 22.20 74.45 40719 0 40719 -2.23 34.59 22.20 74.01 40719 0 40719 -2.26 34.59 22.20 77.08 40719 0 40719 -2.31 34.60 22.20 84.84 40719 0 40719 -2.19 34.61 22.20 90.42 40719 0 40719 -2.33 34.59 22.20 93.49 40719 0 40719 -2.27 34.60 22.20 95.12 40719 0 ..........(16129 rows) Thanks again for your help! Chiara -- View this message in context: http://mailinglists.scilab.org/uploading-a-file-txt-tp3090694p3137851.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From rouxph.22 at gmail.com Tue Jul 5 10:17:38 2011 From: rouxph.22 at gmail.com (philippe) Date: Tue, 05 Jul 2011 10:17:38 +0200 Subject: output format of the timer() function In-Reply-To: References: Message-ID: Le 04/07/2011 12:24, Perrouin Vincent a ?crit : > > I?m using the timer() function on scilab 3..1[...] > but what is the unit of measure : second ? yes, the CPU time given by timer() correspond to a time in seconds. Philippe. From Vincent.Perrouin at cemagref.fr Tue Jul 5 10:18:38 2011 From: Vincent.Perrouin at cemagref.fr (Perrouin Vincent) Date: Tue, 5 Jul 2011 10:18:38 +0200 Subject: [scilab-Users] Re: output format of the timer() function In-Reply-To: References: Message-ID: Thank you for your answer -----Message d'origine----- De?: philippe [mailto:rouxph.22 at gmail.com] Envoy??: mardi 5 juillet 2011 10:18 ??: users at lists.scilab.org Objet?: [scilab-Users] Re: output format of the timer() function Le 04/07/2011 12:24, Perrouin Vincent a ?crit : > > I'm using the timer() function on scilab 3..1[...] > but what is the unit of measure : second ? yes, the CPU time given by timer() correspond to a time in seconds. Philippe. From mathieu.dubois at limsi.fr Tue Jul 5 10:43:49 2011 From: mathieu.dubois at limsi.fr (Mathieu Dubois) Date: Tue, 05 Jul 2011 10:43:49 +0200 Subject: [scilab-Users] Re: uploading a file txt In-Reply-To: <1309792332049-3137851.post@n3.nabble.com> References: <4E00B2D2.3040807@limsi.fr> <4E0DB647.8050001@limsi.fr> <1309792332049-3137851.post@n3.nabble.com> Message-ID: <4E12CEC5.6010100@limsi.fr> Hello, What do you mean by "not working anymore"? Do you have an error message? I guess that 16129*7 is a large matrix. Try to allocate memory with gstacksize (see help). Mathieu Le 04/07/2011 17:12, Chiara a ?crit : > Thanks a lot for your advise! > Yes, is working now, except in the following case. > Trying with this different matrix is not working anymore: > > 40719 -2.47 34.57 22.20 74.05 40719 0 > 40719 -2.51 34.57 22.20 73.77 40719 0 > 40719 -2.52 34.57 22.20 73.65 40719 0 > 40719 -2.44 34.57 22.20 73.57 40719 0 > 40719 -2.56 34.57 22.20 73.97 40719 0 > 40719 -2.41 34.57 22.20 74.73 40719 0 > 40719 -2.44 34.57 22.20 75.20 40719 0 > 40719 -2.32 34.57 22.20 75.32 40719 0 > 40719 -2.36 34.57 22.20 74.96 40719 0 > 40719 -2.25 34.58 22.20 74.45 40719 0 > 40719 -2.23 34.59 22.20 74.01 40719 0 > 40719 -2.26 34.59 22.20 77.08 40719 0 > 40719 -2.31 34.60 22.20 84.84 40719 0 > 40719 -2.19 34.61 22.20 90.42 40719 0 > 40719 -2.33 34.59 22.20 93.49 40719 0 > 40719 -2.27 34.60 22.20 95.12 40719 0 > ..........(16129 rows) > > Thanks again for your help! > Chiara > > -- > View this message in context: http://mailinglists.scilab.org/uploading-a-file-txt-tp3090694p3137851.html > Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From chi.venier at gmail.com Tue Jul 5 11:51:52 2011 From: chi.venier at gmail.com (Chiara) Date: Tue, 5 Jul 2011 02:51:52 -0700 (PDT) Subject: uploading a file txt In-Reply-To: <4E12CEC5.6010100@limsi.fr> References: <4E00B2D2.3040807@limsi.fr> <4E0DB647.8050001@limsi.fr> <1309792332049-3137851.post@n3.nabble.com> <4E12CEC5.6010100@limsi.fr> Message-ID: <1309859512430-3140221.post@n3.nabble.com> Hi! Thanks for your answer. My mistake was to keep the heading (even if commented) in the txt file. Anyway now the matrix is correctly uploaded. Two more issues... In order to save the new matrix and I wrote the command "save('M_new.txt')" but a matrix like the following is saved. Is it a problem of format? ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ I'd like to delete the rows corresponding to NaN values. In matlab I used the following command: M_new(or(isnan(M_new)'),:) = [] In scilab it doesn't seem to work. Is there a similar functions? Thanks again for your help Chiara -- View this message in context: http://mailinglists.scilab.org/uploading-a-file-txt-tp3090694p3140221.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From denis.crete at thalesgroup.com Tue Jul 5 11:57:41 2011 From: denis.crete at thalesgroup.com (CRETE Denis) Date: Tue, 5 Jul 2011 11:57:41 +0200 Subject: [scilab-Users] Re: uploading a file txt In-Reply-To: <1309859512430-3140221.post@n3.nabble.com> References: <4E00B2D2.3040807@limsi.fr> <4E0DB647.8050001@limsi.fr> <1309792332049-3137851.post@n3.nabble.com> <4E12CEC5.6010100@limsi.fr> <1309859512430-3140221.post@n3.nabble.com> Message-ID: <21166_1309859873_4E12E021_21166_15337_1_908CBC9017354841B2F32BBEC70A05A101C3561359EA@THSONEA01CMS01P.one.grp> Hello, try fprintfMat. HTH Denis -----Message d'origine----- De?: Chiara [mailto:chi.venier at gmail.com] Envoy??: mardi 5 juillet 2011 11:52 ??: users at lists.scilab.org Objet?: [scilab-Users] Re: uploading a file txt Hi! Thanks for your answer. My mistake was to keep the heading (even if commented) in the txt file. Anyway now the matrix is correctly uploaded. Two more issues... In order to save the new matrix and I wrote the command "save('M_new.txt')" but a matrix like the following is saved. Is it a problem of format? ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ I'd like to delete the rows corresponding to NaN values. In matlab I used the following command: M_new(or(isnan(M_new)'),:) = [] In scilab it doesn't seem to work. Is there a similar functions? Thanks again for your help Chiara -- View this message in context: http://mailinglists.scilab.org/uploading-a-file-txt-tp3090694p3140221.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From chi.venier at gmail.com Tue Jul 5 13:46:26 2011 From: chi.venier at gmail.com (Chiara) Date: Tue, 5 Jul 2011 04:46:26 -0700 (PDT) Subject: uploading a file txt In-Reply-To: <21166_1309859873_4E12E021_21166_15337_1_908CBC9017354841B2F32BBEC70A05A101C3561359EA@THSONEA01CMS01P.one.grp> References: <4E00B2D2.3040807@limsi.fr> <4E0DB647.8050001@limsi.fr> <1309792332049-3137851.post@n3.nabble.com> <4E12CEC5.6010100@limsi.fr> <1309859512430-3140221.post@n3.nabble.com> <21166_1309859873_4E12E021_21166_15337_1_908CBC9017354841B2F32BBEC70A05A101C3561359EA@THSONEA01CMS01P.one.grp> Message-ID: <1309866386256-3140486.post@n3.nabble.com> It doesn't work, but maybe I wrongly write the fprintfMat syntax. My script is as follows: fd=mopen('file.txt'); M=mfscanf(-1,fd,"%f %f %f %f %f %f %f\n"); stacksize('max') gstacksize('max') mclose(fd); data=M(:,1); for i=2:length(data)-1 if M(i,7)~=M(i-1,7); M(i,8)=%nan; M(i+1,8)=%nan; M(i+2,8)=%nan; M(i+3,8)=%nan; M(i+4,8)=%nan; M(i+5,8)=%nan; M(i+6,8)=%nan; M(i+7,8)=%nan; M(i+8,8)=%nan; M(i+9,8)=%nan; M(i+10,8)=%nan; M(i+11,8)=%nan; M(i+12,8)=%nan; M(i+13,8)=%nan; M(i+14,8)=%nan; end end M(1:15,8)=%nan; Mnew=M; Mnew(or(isnan(Mnew)'),:) = []; fprintfMat(TMPDIR + '/Mnew.txt'); Is it possible to save the matrix Mnew in the directory where I am working? Thanks for help Chiara -- View this message in context: http://mailinglists.scilab.org/uploading-a-file-txt-tp3090694p3140486.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From mathieu.dubois at limsi.fr Tue Jul 5 14:52:12 2011 From: mathieu.dubois at limsi.fr (Mathieu Dubois) Date: Tue, 05 Jul 2011 14:52:12 +0200 Subject: [scilab-Users] Re: uploading a file txt In-Reply-To: <1309859512430-3140221.post@n3.nabble.com> References: <4E00B2D2.3040807@limsi.fr> <4E0DB647.8050001@limsi.fr> <1309792332049-3137851.post@n3.nabble.com> <4E12CEC5.6010100@limsi.fr> <1309859512430-3140221.post@n3.nabble.com> Message-ID: <4E1308FC.80208@limsi.fr> On 07/05/2011 11:51 AM, Chiara wrote: > Hi! > Thanks for your answer. My mistake was to keep the heading (even if > commented) in the txt file. Anyway now the matrix is correctly uploaded. > > Two more issues... > > In order to save the new matrix and I wrote the command "save('M_new.txt')" > but a matrix like the following is saved. Is it a problem of format? > > ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ > ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ > ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ > ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ > ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ ??@ As stated by the help page save use a binary format. If you want to use a text format use mfprintf. In you case: fd2 = mopen('new_file.txt', 'w') mfprintf(fd2,"%f\t%f\t%f\t%f\t%f\t%f\t%f\n", M); mclose(fd); should work (\t is to use tabs as column separator instead of white space). Note that the 2 files won't be exactly identical (but you can play with format specifier: for instance your 1st and 6th column looks like intergers so use %d, others columns seems to have 2 digits so use %.2f instead of %f). Generally speaking scilab IO function works in pair: - save-load: binary - fprintfMat-fscanfMat: text format for matrices - mfprintff-mfscanf: general text format - write_csv-read_csv When you have a problem with a function first read the help page. > ??@ ??@ > > I'd like to delete the rows corresponding to NaN values. In matlab I used > the following command: > M_new(or(isnan(M_new)'),:) = [] > In scilab it doesn't seem to work. Is there a similar functions? In Matlab, or computes the logical or of every column and therefore returns a vector. In scilab, or(a) computes the logical or of every elements and therefore returns a scalar. or(a,2) operates on rows. Therefore : M_new(or(isnan(M_new), 2),:) = []; should work. > Thanks again for your help > > Chiara > > > > -- > View this message in context: http://mailinglists.scilab.org/uploading-a-file-txt-tp3090694p3140221.html > Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From denis.crete at thalesgroup.com Tue Jul 5 15:06:56 2011 From: denis.crete at thalesgroup.com (CRETE Denis) Date: Tue, 5 Jul 2011 15:06:56 +0200 Subject: [scilab-Users] Re: uploading a file txt In-Reply-To: <1309866386256-3140486.post@n3.nabble.com> References: <4E00B2D2.3040807@limsi.fr> <4E0DB647.8050001@limsi.fr> <1309792332049-3137851.post@n3.nabble.com> <4E12CEC5.6010100@limsi.fr> <1309859512430-3140221.post@n3.nabble.com> <21166_1309859873_4E12E021_21166_15337_1_908CBC9017354841B2F32BBEC70A05A101C3561359EA@THSONEA01CMS01P.one.grp> <1309866386256-3140486.post@n3.nabble.com> Message-ID: <10580_1309871231_4E130C7F_10580_3405_1_908CBC9017354841B2F32BBEC70A05A101C356176F4A@THSONEA01CMS01P.one.grp> Hello, After reading the file and assigned the content to M, in order to reject the first 15 lines when a change occurs in column 7 and at the very start, you can do: change=[0,find(M(1:$-1,7)~=M(2:$,7))]; first15=matrix((1:15)'*ones(change)+ones(15,1)*change,-1,1); M(first15,:)=[]; // to save it, may be this_dir=get_absolute_file_path('this_script.sce'); // and then chdir this_dir; // finally // The name of the matrix to save in the MNew.txt file has been ommitted ! fprintfMat('Mnew.txt',M); Regards Denis -----Message d'origine----- De?: Chiara [mailto:chi.venier at gmail.com] Envoy??: mardi 5 juillet 2011 13:46 ??: users at lists.scilab.org Objet?: [scilab-Users] Re: uploading a file txt It doesn't work, but maybe I wrongly write the fprintfMat syntax. My script is as follows: fd=mopen('file.txt'); M=mfscanf(-1,fd,"%f %f %f %f %f %f %f\n"); stacksize('max') gstacksize('max') mclose(fd); data=M(:,1); for i=2:length(data)-1 if M(i,7)~=M(i-1,7); M(i,8)=%nan; M(i+1,8)=%nan; M(i+2,8)=%nan; M(i+3,8)=%nan; M(i+4,8)=%nan; M(i+5,8)=%nan; M(i+6,8)=%nan; M(i+7,8)=%nan; M(i+8,8)=%nan; M(i+9,8)=%nan; M(i+10,8)=%nan; M(i+11,8)=%nan; M(i+12,8)=%nan; M(i+13,8)=%nan; M(i+14,8)=%nan; end end M(1:15,8)=%nan; Mnew=M; Mnew(or(isnan(Mnew)'),:) = []; fprintfMat(TMPDIR + '/Mnew.txt'); Is it possible to save the matrix Mnew in the directory where I am working? Thanks for help Chiara -- View this message in context: http://mailinglists.scilab.org/uploading-a-file-txt-tp3090694p3140486.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From end48war at yahoo.fr Tue Jul 5 18:17:28 2011 From: end48war at yahoo.fr (azerty azerty) Date: Tue, 5 Jul 2011 17:17:28 +0100 (BST) Subject: XCOS : Multiple curves in CMScope Message-ID: <1309882648.35397.YahooMailRC@web25807.mail.ukl.yahoo.com> Hi, I'm trying to display a matrix of size 200*1 in a CMScope block. When I try to configure this block to display these 200 curves, I set the input size to [200 1] and the block asks me for 200 colors and 200 bondaries values. Is there any way to put easily the same value for each of these 200 parameters? Thank you by advance, Benoit -------------- next part -------------- An HTML attachment was scrubbed... URL: From lukeaarond at gmail.com Wed Jul 6 00:07:47 2011 From: lukeaarond at gmail.com (lukeaarond) Date: Tue, 5 Jul 2011 15:07:47 -0700 (PDT) Subject: Searching for a phrase in a text file Message-ID: <1309903667169-3142731.post@n3.nabble.com> I have a text document with a lot of information in it, but I just need to extract one sequence from it. Right before the sequence is always the phrase 'ncbi2na' and ends with an apostrophe, therefore, I want to search the whole file for 'ncbi2na' and save the data until the end apostrophe. The text file looks like the following: ....'junk'.... ....'junk'.... ....'junk'.... ....'junk'.... ....'junk'.... ....'junk'.... ncbi2na ATTTGAATGCCAA'H ....'junk'.... ....'junk'.... I am currently doing this by parsing each character until it sees the characters n,c,b,i,2,n and a, next to eachother. As shown below: fd=mopen(Filename,"r"); while ~meof(fd) character(i)=mgetstr(1,fd) //then various code to save information after ncbi2na and before the apostrophe end mclose(fd) However, since there is about 1000 rows of 'junk' before the sequence, it takes a very long time to parse through and find the sequence. Therefore, I was wondering if there is a quicker way? Perhaps a function or method that allows me to "search" through the file until I find 'ncbi2na' and start my parsing from there. Thank you in advance. -- View this message in context: http://mailinglists.scilab.org/Searching-for-a-phrase-in-a-text-file-tp3142731p3142731.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From mathieu.dubois at limsi.fr Wed Jul 6 00:51:36 2011 From: mathieu.dubois at limsi.fr (Mathieu Dubois) Date: Wed, 06 Jul 2011 00:51:36 +0200 Subject: [scilab-Users] Searching for a phrase in a text file In-Reply-To: <1309903667169-3142731.post@n3.nabble.com> References: <1309903667169-3142731.post@n3.nabble.com> Message-ID: <4E139578.3010406@limsi.fr> Hello, Le 06/07/2011 00:07, lukeaarond a ?crit : > I have a text document with a lot of information in it, but I just need to > extract one sequence from it. Right before the sequence is always the phrase > 'ncbi2na' and ends with an apostrophe, therefore, I want to search the whole > file for 'ncbi2na' and save the data until the end apostrophe. The text file > looks like the following: > > ....'junk'.... > ....'junk'.... > ....'junk'.... > ....'junk'.... > ....'junk'.... > ....'junk'.... > ncbi2na ATTTGAATGCCAA'H > ....'junk'.... > ....'junk'.... > > I am currently doing this by parsing each character until it sees the > characters n,c,b,i,2,n and a, next to eachother. As shown below: > Scilab has a function which matches a regular exepression in a vector of strings. So try to load your data in a vector (for example with mfscanf or mgetl) and use grep to find the matching line for instance: w=grep(data, "/^ncbi2na/", "r"); // w contains indices of lines starting with ncbi2na For help about regular expressions, see help("regexp") which points to the Perl documentation. Once you have the index of the lines, it is not hard to find the information. Just remember that stringsd in scilab are not vectors of characters: s=data(w); interesting_string = part(s, 8:length(s)-2); // discard 8 first (ncbi2na ) and 2 last ('H) char > fd=mopen(Filename,"r"); > while ~meof(fd) > character(i)=mgetstr(1,fd) > //then various code to save information after ncbi2na and before the > apostrophe > end > mclose(fd) > > However, since there is about 1000 rows of 'junk' before the sequence, it > takes a very long time to parse through and find the sequence. > > Therefore, I was wondering if there is a quicker way? Perhaps a function or > method that allows me to "search" through the file until I find 'ncbi2na' > and start my parsing from there. Thank you in advance. > > -- > View this message in context: http://mailinglists.scilab.org/Searching-for-a-phrase-in-a-text-file-tp3142731p3142731.html > Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From cilleroares at gmail.com Tue Jul 5 22:24:27 2011 From: cilleroares at gmail.com (=?ISO-8859-1?Q?Jes=FAs_Cillero?=) Date: Tue, 5 Jul 2011 22:24:27 +0200 Subject: when i use 'Xcos' and push 'run'...........fail Message-ID: Hello, this is my first post here: I begin to show you a problem: when i use 'Xcos' and push 'run', i get the follow warning on the console: '*import_from_hdf5: Imposible abrir el archivo: C:\Users\Jes?s\AppData \Local\Temp\SCI_TMP_3936_\xcos1398253545792893886.h5'*..................I don?t know what to do... Thank you, bye. -------------- next part -------------- An HTML attachment was scrubbed... URL: From clement.david at scilab.org Wed Jul 6 09:56:24 2011 From: clement.david at scilab.org (=?ISO-8859-1?Q?Cl=E9ment?= David) Date: Wed, 06 Jul 2011 09:56:24 +0200 Subject: [scilab-Users] when i use 'Xcos' and push 'run'...........fail In-Reply-To: References: Message-ID: <1309938984.2404.8.camel@pinarellu.inria.fr> Hello, We are aware of an issue while using non-ASCII path as TMPDIR [1]. To workaround, you can define the system-wide environment variable TMP to an existing ASCII path. sample scilab.bat launcher: set TMP=C:\Temp C:\Program Files\scilab-5.3.2\bin\WScilex.exe [1]: http://bugzilla.scilab.org/show_bug.cgi?id=9614 Do not hesitate to add your mail as CC on the bug, we will need some testing to check the fix. Regards, -- Cl?ment Le mardi 05 juillet 2011 ? 22:24 +0200, Jes?s Cillero a ?crit : > Hello, this is my first post here: > > I begin to show you a problem: when i use 'Xcos' and push 'run', i get > the follow warning on the console: 'import_from_hdf5: Imposible abrir > el archivo: C:\Users\Jes?s\AppData \Local\Temp\SCI_TMP_3936_ > \xcos1398253545792893886.h5'..................I don?t know what to > do... > > Thank you, bye. -- Cl?ment David From chi.venier at gmail.com Wed Jul 6 14:09:49 2011 From: chi.venier at gmail.com (Chiara) Date: Wed, 6 Jul 2011 05:09:49 -0700 (PDT) Subject: uploading a file txt In-Reply-To: <1309859512430-3140221.post@n3.nabble.com> References: <4E00B2D2.3040807@limsi.fr> <4E0DB647.8050001@limsi.fr> <1309792332049-3137851.post@n3.nabble.com> <4E12CEC5.6010100@limsi.fr> <1309859512430-3140221.post@n3.nabble.com> Message-ID: <1309954189494-3144445.post@n3.nabble.com> Great, thank you! Now is perfectly working! Chiara -- View this message in context: http://mailinglists.scilab.org/uploading-a-file-txt-tp3090694p3144445.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From lukeaarond at gmail.com Wed Jul 6 20:50:01 2011 From: lukeaarond at gmail.com (lukeaarond) Date: Wed, 6 Jul 2011 11:50:01 -0700 (PDT) Subject: Searching for a phrase in a text file In-Reply-To: <4E139578.3010406@limsi.fr> References: <1309903667169-3142731.post@n3.nabble.com> <4E139578.3010406@limsi.fr> Message-ID: <1309978201828-3145791.post@n3.nabble.com> this works great! thank you very much. -- View this message in context: http://mailinglists.scilab.org/Searching-for-a-phrase-in-a-text-file-tp3142731p3145791.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From lukeaarond at gmail.com Wed Jul 6 22:18:38 2011 From: lukeaarond at gmail.com (lukeaarond) Date: Wed, 6 Jul 2011 13:18:38 -0700 (PDT) Subject: overwriting files with write() Message-ID: <1309983518996-3146073.post@n3.nabble.com> I am saving a string with the function write: write('name.txt',string); However, if there is already a file called 'name.txt' in the directory then the write() function stops and will not save the string. How do I get write() to overwrite files? -- View this message in context: http://mailinglists.scilab.org/overwriting-files-with-write-tp3146073p3146073.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From Mike at Page-One.Waitrose.com Wed Jul 6 22:26:39 2011 From: Mike at Page-One.Waitrose.com (Mike Page) Date: Wed, 6 Jul 2011 21:26:39 +0100 Subject: [scilab-Users] overwriting files with write() In-Reply-To: <1309983518996-3146073.post@n3.nabble.com> Message-ID: Hi, You can use errcatch to trap the error and take some action. For example when opening a file named in the string variable "Path" you can use: Err = execstr ("mdelete (Path);", 'errcatch'); File = file ('open', Path, 'new'); The first line deletes the file, catching an error if the file doesn't exist. Then you can open it as type 'new' whether or not it already exists. Hope that helps, Mike. -----Original Message----- From: lukeaarond [mailto:lukeaarond at gmail.com] Sent: 06 July 2011 21:19 To: users at lists.scilab.org Subject: [scilab-Users] overwriting files with write() I am saving a string with the function write: write('name.txt',string); However, if there is already a file called 'name.txt' in the directory then the write() function stops and will not save the string. How do I get write() to overwrite files? -- View this message in context: http://mailinglists.scilab.org/overwriting-files-with-write-tp3146073p314607 3.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. ----- No virus found in this message. Checked by AVG - www.avg.com Version: 10.0.1388 / Virus Database: 1516/3747 - Release Date: 07/06/11 From vogt at centre-cired.fr Wed Jul 6 22:27:29 2011 From: vogt at centre-cired.fr (Adrien Vogt-Schilb) Date: Wed, 06 Jul 2011 22:27:29 +0200 Subject: [scilab-Users] overwriting files with write() In-Reply-To: <1309983518996-3146073.post@n3.nabble.com> References: <1309983518996-3146073.post@n3.nabble.com> Message-ID: <4E14C531.4090205@centre-cired.fr> hi you can use deletefile(filename); before write (filename,string); deltefile will not mind if filename does not exist, so this will work without checking before with old scilab versions, you can use unix("rm "+filename) or unix("del "+filename) for more sophisticated things, such as appending something to a file, see mopen On 06/07/2011 22:18, lukeaarond wrote: > I am saving a string with the function write: > > write('name.txt',string); > > However, if there is already a file called 'name.txt' in the directory then > the write() function stops and will not save the string. How do I get > write() to overwrite files? > > -- > View this message in context: http://mailinglists.scilab.org/overwriting-files-with-write-tp3146073p3146073.html > Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. -- *Adrien Vogt-Schilb* Research Fellow vogt at centre-cired.fr Tel: (+33) 1 43 94 73 96 Fax: (+33) 1 43 94 73 70 CIRED 45 bis, Av de la Belle Gabrielle F-94736 Nogent-sur-Marne http://www.centre-cired.fr/ -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: logocired.png Type: image/png Size: 4092 bytes Desc: not available URL: From rouxph.22 at gmail.com Wed Jul 6 22:34:17 2011 From: rouxph.22 at gmail.com (philippe) Date: Wed, 06 Jul 2011 22:34:17 +0200 Subject: overwriting files with write() In-Reply-To: <1309983518996-3146073.post@n3.nabble.com> References: <1309983518996-3146073.post@n3.nabble.com> Message-ID: Hi Lukeaaround, Le 06/07/2011 22:18, lukeaarond a ?crit : > I am saving a string with the function write: > > write('name.txt',string); > > However, if there is already a file called 'name.txt' in the directory then > the write() function stops and will not save the string. How do I get > write() to overwrite files? use mputl(string,'name.txt') instead of write('name.txt',string) "mputl" can overwrite existing files unlike "write". Philippe. From lukeaarond at gmail.com Wed Jul 6 23:22:49 2011 From: lukeaarond at gmail.com (lukeaarond) Date: Wed, 6 Jul 2011 14:22:49 -0700 (PDT) Subject: overwriting files with write() In-Reply-To: References: <1309983518996-3146073.post@n3.nabble.com> Message-ID: <1309987369867-3146245.post@n3.nabble.com> Thanks a lot! those all helped :) -- View this message in context: http://mailinglists.scilab.org/overwriting-files-with-write-tp3146073p3146245.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From vogt at centre-cired.fr Thu Jul 7 12:35:40 2011 From: vogt at centre-cired.fr (Adrien Vogt-Schilb) Date: Thu, 07 Jul 2011 12:35:40 +0200 Subject: terminating a numerical integration when y reaches a value (instead of t as with ode) Message-ID: <4E158BFC.9090403@centre-cired.fr> Hi everyone, When one whishes to solve an ODE y'=f(t,y) starting at point (t0,y0), one can use the ode function with the following arguments ode(y0,t0, [t0:tf], f), where [t0:tf] is the interval on which one wants to solve the ODE. The terminal condition of the resolution is, in the ode function, a time condition (t==tf). Does anybody know if and how we can use instead a terminal condition on y? Let us suppose, for example, that we know that the solution increases to infinity (maybe in finite time). The problem is to solve the ODE as long as y stays under a certain value yf. We do not know which temporal interval is to be used to reach this yf. Numerical example: we want to solve y'=1+a.*y^3 from y0=0 to yf=10 for differents values of a. Any ideas ? Best regards, Adrien AVS -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.cheze at cea.fr Thu Jul 7 15:46:01 2011 From: david.cheze at cea.fr (=?UTF-8?Q?David_Ch=C3=A8ze?=) Date: Thu, 7 Jul 2011 06:46:01 -0700 (PDT) Subject: pressure drop/flowrate calculation in hydraulic loop Message-ID: <1310046361305-3148237.post@n3.nabble.com> hi, do you know if there's already a scilab's (maybe +Xcos, modelica) module/file to calculate the pressure drop in a closed hydraulic loop (in the field of heating, cooling and ventilating, closed loop is made from pipes, valves and pumps, in series in parallel arrangment) ? thanks for your advice, David -- View this message in context: http://mailinglists.scilab.org/pressure-drop-flowrate-calculation-in-hydraulic-loop-tp3148237p3148237.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From Bilel.Ngazou at eurocopter.com Thu Jul 7 15:48:01 2011 From: Bilel.Ngazou at eurocopter.com (Ngazou, Bilel) Date: Thu, 7 Jul 2011 15:48:01 +0200 Subject: unsuscribtion Message-ID: Please would you unsuscribe me from the mailing list please Bilel Ngazou ETGP - Pre-design Pre-sizing intern -------------- next part -------------- An HTML attachment was scrubbed... URL: From simon.gareste at scilab.org Thu Jul 7 16:01:12 2011 From: simon.gareste at scilab.org (Simon GARESTE) Date: Thu, 07 Jul 2011 16:01:12 +0200 Subject: [scilab-Users] unsuscribtion In-Reply-To: References: Message-ID: <4E15BC28.2020507@scilab.org> Hi, Sending a mail to users-info at lists.scilab.org will show you how to do this. You also received a mail when you subscribed indicating how to unsub. Simon On 07/07/2011 15:48, Ngazou, Bilel wrote: > > Please would you unsuscribe me from the mailing list please > > **Bilel Ngazou** > > ETGP - Pre-design Pre-sizing > > intern > -- Simon Gareste Support& Development Engineer -- Consortium Scilab Digiteo Domaine de Voluceau Rocquencourt - B.P. 105 78153 Le Chesnay Cedex -- -------------- next part -------------- An HTML attachment was scrubbed... URL: From Bilel.Ngazou at eurocopter.com Thu Jul 7 16:42:49 2011 From: Bilel.Ngazou at eurocopter.com (Ngazou, Bilel) Date: Thu, 7 Jul 2011 16:42:49 +0200 Subject: [scilab-Users] unsuscribtion In-Reply-To: <4E15BC28.2020507@scilab.org> References: <4E15BC28.2020507@scilab.org> Message-ID: Thank you Simon !! ________________________________ De : Simon GARESTE [mailto:simon.gareste at scilab.org] Envoy? : jeudi 7 juillet 2011 16:01 ? : users at lists.scilab.org Objet : Re: [scilab-Users] unsuscribtion Hi, Sending a mail to users-info at lists.scilab.org will show you how to do this. You also received a mail when you subscribed indicating how to unsub. Simon On 07/07/2011 15:48, Ngazou, Bilel wrote: Please would you unsuscribe me from the mailing list please Bilel Ngazou ETGP - Pre-design Pre-sizing intern -- Simon Gareste Support & Development Engineer -- Consortium Scilab Digiteo Domaine de Voluceau Rocquencourt - B.P. 105 78153 Le Chesnay Cedex -- -------------- next part -------------- An HTML attachment was scrubbed... URL: From stephane.mottelet at utc.fr Thu Jul 7 20:54:35 2011 From: stephane.mottelet at utc.fr (Stephane Mottelet) Date: Thu, 07 Jul 2011 20:54:35 +0200 Subject: [scilab-Users] terminating a numerical integration when y reaches a value (instead of t as with ode) In-Reply-To: <4E158BFC.9090403@centre-cired.fr> References: <4E158BFC.9090403@centre-cired.fr> Message-ID: <20110707205435.15943l8mczvn47b4@webmail.utc.fr> Hello, use the "root" parameter of ode (it is well explained in the help page of this macro). S. Adrien Vogt-Schilb a ?crit?: > Hi everyone, > > When one whishes to solve an ODE y'=f(t,y) starting at point (t0,y0), one > can use the ode function with the following arguments ode(y0,t0, [t0:tf], f), > where [t0:tf] is the interval on which one wants to solve the ODE. > > The terminal condition of the resolution is, in the ode function, a time > condition (t==tf). Does anybody know if and how we can use instead a > terminal condition on y? > > > Let us suppose, for example, that we know that the solution increases to > infinity (maybe in finite time). The problem is to solve the ODE as long > as y stays under a certain value yf. We do not know which temporal > interval is to > be used to reach this yf. > > Numerical example: we want to solve y'=1+a.*y^3 from y0=0 to yf=10 for > differents values of a. > > Any ideas ? > > > Best regards, > Adrien > > AVS > > From vogt at centre-cired.fr Thu Jul 7 21:25:06 2011 From: vogt at centre-cired.fr (Adrien Vogt-Schilb) Date: Thu, 07 Jul 2011 21:25:06 +0200 Subject: [scilab-Users] terminating a numerical integration when y reaches a value (instead of t as with ode) In-Reply-To: <20110707205435.15943l8mczvn47b4@webmail.utc.fr> References: <4E158BFC.9090403@centre-cired.fr> <20110707205435.15943l8mczvn47b4@webmail.utc.fr> Message-ID: <4E160812.6070902@centre-cired.fr> thank you that was it On 07/07/2011 20:54, Stephane Mottelet wrote: > Hello, > > use the "root" parameter of ode (it is well explained in the help page > of this macro). > > S. > > Adrien Vogt-Schilb a ?crit : > >> Hi everyone, >> >> When one whishes to solve an ODE y'=f(t,y) starting at point (t0,y0), >> one >> can use the ode function with the following arguments ode(y0,t0, >> [t0:tf], f), >> where [t0:tf] is the interval on which one wants to solve the ODE. >> >> The terminal condition of the resolution is, in the ode function, a time >> condition (t==tf). Does anybody know if and how we can use instead a >> terminal condition on y? >> >> >> Let us suppose, for example, that we know that the solution increases to >> infinity (maybe in finite time). The problem is to solve the ODE as long >> as y stays under a certain value yf. We do not know which temporal >> interval is to >> be used to reach this yf. >> >> Numerical example: we want to solve y'=1+a.*y^3 from y0=0 to yf=10 for >> differents values of a. >> >> Any ideas ? >> >> >> Best regards, >> Adrien >> >> AVS >> >> > > -- *Adrien Vogt-Schilb* Research Fellow vogt at centre-cired.fr Tel: (+33) 1 43 94 73 96 Fax: (+33) 1 43 94 73 70 CIRED 45 bis, Av de la Belle Gabrielle F-94736 Nogent-sur-Marne http://www.centre-cired.fr/ -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: logocired.png Type: image/png Size: 4092 bytes Desc: not available URL: From eternalcomplex at gmail.com Fri Jul 8 07:30:18 2011 From: eternalcomplex at gmail.com (eternalcomplex) Date: Thu, 7 Jul 2011 22:30:18 -0700 (PDT) Subject: Variables scope in functions In-Reply-To: References: Message-ID: <1310103018100-3150755.post@n3.nabble.com> SCILAB's implementation of variable scope is MUCH better than MATLAB's. Please do not change it. If you're confused, just read this wiki. It explains everything you need. http://wiki.scilab.org/howto/global%20and%20local%20variables -- View this message in context: http://mailinglists.scilab.org/Variables-scope-in-functions-tp2729475p3150755.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From Serge.Steer at inria.fr Fri Jul 8 10:31:38 2011 From: Serge.Steer at inria.fr (Serge Steer) Date: Fri, 08 Jul 2011 10:31:38 +0200 Subject: [scilab-Users] XCOS : Multiple curves in CMScope In-Reply-To: <1309882648.35397.YahooMailRC@web25807.mail.ukl.yahoo.com> References: <1309882648.35397.YahooMailRC@web25807.mail.ukl.yahoo.com> Message-ID: <4E16C06A.50601@inria.fr> Le 05/07/2011 18:17, azerty azerty a ?crit : > Hi, > > I'm trying to display a matrix of size 200*1 in a CMScope block. > When I try to configure this block to display these 200 curves, I set > the input size to [200 1] and the block asks me for 200 colors and 200 > bondaries values. Is there any way to put easily the same value for > each of these 200 parameters? > yes for colors you can use ones(1,200)*n where n is the index of the selected color (n=2 for blue) for boundaries you can proceed the same way ones(1,200)*ymin ones(1,200)*ymax More generally you can use any Scilab expression as an answer for Xcos blocks parameters BUT i am not sure that this block support such number of input, because each the size of requested subwindow will be too small. Serge Steer INRIA > Thank you by advance, > Benoit -------------- next part -------------- An HTML attachment was scrubbed... URL: From piotr.wisniewski at ppcs.pl Sat Jul 9 12:28:39 2011 From: piotr.wisniewski at ppcs.pl (=?UTF-8?B?UGlvdHIgV2nFm25pZXdza2k=?=) Date: Sat, 09 Jul 2011 12:28:39 +0200 Subject: Problems with SciLab 5.3.2 in Win7 64bit Message-ID: <4E182D57.4060907@ppcs.pl> Dears, I get Scilab from your page. Installation I have done normally (as before on XP). Program is working but not fully. When I open SciNotes following comes. SciNotes works even that. The method createMenu in org.scilab.modules.scinotes.actions.LineNumbersAction threw an exception : java.lang.reflect.InvocationTargetException at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.scilab.modules.scinotes.SciNotesGUI.getMenuItem(Unknown Source) at org.scilab.modules.scinotes.SciNotesGUI.getMenu(Unknown Source) at org.scilab.modules.scinotes.SciNotesGUI.generateMenuBar(Unknown Source) at org.scilab.modules.scinotes.SciNotesGUI.init(Unknown Source) at org.scilab.modules.scinotes.SciNotes.createEditor(Unknown Source) at org.scilab.modules.scinotes.SciNotes.launchSciNotes(Unknown Source) at org.scilab.modules.scinotes.SciNotes$2.run(Unknown Source) at java.awt.event.InvocationEvent.dispatch(Unknown Source) at java.awt.EventQueue.dispatchEvent(Unknown Source) at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.run(Unknown Source) Caused by: java.util.NoSuchElementException at java.util.StringTokenizer.nextToken(Unknown Source) at org.scilab.modules.scinotes.actions.LineNumbersAction.createMenu(Unknown Source) ... 19 more The biggest problem is with Xcos. It doesn't work at all. When I try to start simulation following comes: ncsa.hdf.hdf5lib.exceptions.HDF5LibraryException ncsa.hdf.hdf5lib.exceptions.HDF5LibraryException at ncsa.hdf.hdf5lib.H5._H5Fcreate(Native Method) at ncsa.hdf.hdf5lib.H5.H5Fcreate(H5.java:1348) at org.scilab.modules.hdf5.write.H5Write.createFile(Unknown Source) at org.scilab.modules.xcos.io.scicos.H5RWHandler.writeDiagram(Unknown Source) at org.scilab.modules.xcos.graph.XcosDiagram.dumpToHdf5File(Unknown Source) at org.scilab.modules.xcos.actions.StartAction.createSimulationCommand(Unknown Source) at org.scilab.modules.xcos.actions.StartAction.actionPerformed(Unknown Source) at javax.swing.AbstractButton.fireActionPerformed(Unknown Source) at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source) at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source) at javax.swing.DefaultButtonModel.setPressed(Unknown Source) at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source) at java.awt.AWTEventMulticaster.mouseReleased(Unknown Source) at java.awt.Component.processMouseEvent(Unknown Source) at javax.swing.JComponent.processMouseEvent(Unknown Source) at java.awt.Component.processEvent(Unknown Source) at java.awt.Container.processEvent(Unknown Source) at java.awt.Component.dispatchEventImpl(Unknown Source) at java.awt.Container.dispatchEventImpl(Unknown Source) at java.awt.Component.dispatchEvent(Unknown Source) at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source) at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source) at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source) at java.awt.Container.dispatchEventImpl(Unknown Source) at java.awt.Window.dispatchEventImpl(Unknown Source) at java.awt.Component.dispatchEvent(Unknown Source) at java.awt.EventQueue.dispatchEvent(Unknown Source) at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.run(Unknown Source) ncsa.hdf.hdf5lib.exceptions.HDF5LibraryException ncsa.hdf.hdf5lib.exceptions.HDF5LibraryException at ncsa.hdf.hdf5lib.H5._H5Gcreate(Native Method) at ncsa.hdf.hdf5lib.H5.H5Gcreate(H5.java:1546) at org.scilab.modules.hdf5.write.H5WriteScilabCommonList.writeInDataSet(Unknown Source) at org.scilab.modules.hdf5.write.H5WriteScilabMList.writeInDataSet(Unknown Source) at org.scilab.modules.hdf5.write.H5Write.writeInDataSet(Unknown Source) at org.scilab.modules.xcos.io.scicos.H5RWHandler.writeDiagram(Unknown Source) at org.scilab.modules.xcos.graph.XcosDiagram.dumpToHdf5File(Unknown Source) at org.scilab.modules.xcos.actions.StartAction.createSimulationCommand(Unknown Source) at org.scilab.modules.xcos.actions.StartAction.actionPerformed(Unknown Source) at javax.swing.AbstractButton.fireActionPerformed(Unknown Source) at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source) at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source) at javax.swing.DefaultButtonModel.setPressed(Unknown Source) at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source) at java.awt.AWTEventMulticaster.mouseReleased(Unknown Source) at java.awt.Component.processMouseEvent(Unknown Source) at javax.swing.JComponent.processMouseEvent(Unknown Source) at java.awt.Component.processEvent(Unknown Source) at java.awt.Container.processEvent(Unknown Source) at java.awt.Component.dispatchEventImpl(Unknown Source) at java.awt.Container.dispatchEventImpl(Unknown Source) at java.awt.Component.dispatchEvent(Unknown Source) at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source) at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source) at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source) at java.awt.Container.dispatchEventImpl(Unknown Source) at java.awt.Window.dispatchEventImpl(Unknown Source) at java.awt.Component.dispatchEvent(Unknown Source) at java.awt.EventQueue.dispatchEvent(Unknown Source) at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.run(Unknown Source) import_from_hdf5: Unable to open file: C:\Users\Piotr Wi?niewski\AppData\Local\Temp\SCI_TMP_478 8_\xcos8580468894431797456.h5 The simulation file was done with SciLab v5.3.2 32bit on WinXP. It was working perfectly until now. What is wrong? What can I do to be able to use that again? I cannot build new models because I cannot edit parameters too. Please give me some advice what to do? With kind regards Piotr Wi?niewski -- PPCS Piotr Wi?niewski Komor?w 20A 58-100 ?widnica Poland tel.: +48 608 053 483 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: moz-screenshot.png Type: image/png Size: 404466 bytes Desc: not available URL: From calixte.denizet at scilab.org Sat Jul 9 15:56:29 2011 From: calixte.denizet at scilab.org (calixte) Date: Sat, 09 Jul 2011 15:56:29 +0200 Subject: [scilab-Users] Problems with SciLab 5.3.2 in Win7 64bit In-Reply-To: <4E182D57.4060907@ppcs.pl> References: <4E182D57.4060907@ppcs.pl> Message-ID: <1310219789.6481.12.camel@Calixte-Dell> Hi Piotr, About SciNotes, this bus has already been reported: http://bugzilla.scilab.org/show_bug.cgi?id=9475 You have a pacth in the comment #4: http://bugzilla.scilab.org/show_bug.cgi?id=9475#c4 If you cannot write in SCI, there is a workaround here: http://bugzilla.scilab.org/show_bug.cgi?id=9178 Regards, Calixte Le samedi 09 juillet 2011 ? 12:28 +0200, Piotr Wi?niewski a ?crit : > Dears, > I get Scilab from your page. Installation I have done normally (as > before on XP). Program is working but not fully. > > When I open SciNotes following comes. SciNotes works even that. > > The method createMenu in > org.scilab.modules.scinotes.actions.LineNumbersAction threw an > exception : > java.lang.reflect.InvocationTargetException > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) > at java.lang.reflect.Method.invoke(Unknown Source) > at org.scilab.modules.scinotes.SciNotesGUI.getMenuItem(Unknown > Source) > at org.scilab.modules.scinotes.SciNotesGUI.getMenu(Unknown Source) > at org.scilab.modules.scinotes.SciNotesGUI.generateMenuBar(Unknown > Source) > at org.scilab.modules.scinotes.SciNotesGUI.init(Unknown Source) > at org.scilab.modules.scinotes.SciNotes.createEditor(Unknown > Source) > at org.scilab.modules.scinotes.SciNotes.launchSciNotes(Unknown > Source) > at org.scilab.modules.scinotes.SciNotes$2.run(Unknown Source) > at java.awt.event.InvocationEvent.dispatch(Unknown Source) > at java.awt.EventQueue.dispatchEvent(Unknown Source) > at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown > Source) > at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown > Source) > at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown > Source) > at java.awt.EventDispatchThread.pumpEvents(Unknown Source) > at java.awt.EventDispatchThread.pumpEvents(Unknown Source) > at java.awt.EventDispatchThread.run(Unknown Source) > Caused by: java.util.NoSuchElementException > at java.util.StringTokenizer.nextToken(Unknown Source) > at > org.scilab.modules.scinotes.actions.LineNumbersAction.createMenu(Unknown Source) > ... 19 more > > The biggest problem is with Xcos. It doesn't work at all. > > When I try to start simulation following comes: > > ncsa.hdf.hdf5lib.exceptions.HDF5LibraryException > ncsa.hdf.hdf5lib.exceptions.HDF5LibraryException > at ncsa.hdf.hdf5lib.H5._H5Fcreate(Native Method) > at ncsa.hdf.hdf5lib.H5.H5Fcreate(H5.java:1348) > at org.scilab.modules.hdf5.write.H5Write.createFile(Unknown > Source) > at > org.scilab.modules.xcos.io.scicos.H5RWHandler.writeDiagram(Unknown > Source) > at > org.scilab.modules.xcos.graph.XcosDiagram.dumpToHdf5File(Unknown > Source) > at > org.scilab.modules.xcos.actions.StartAction.createSimulationCommand(Unknown Source) > at > org.scilab.modules.xcos.actions.StartAction.actionPerformed(Unknown > Source) > at javax.swing.AbstractButton.fireActionPerformed(Unknown Source) > at javax.swing.AbstractButton$Handler.actionPerformed(Unknown > Source) > at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown > Source) > at javax.swing.DefaultButtonModel.setPressed(Unknown Source) > at > javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown > Source) > at java.awt.AWTEventMulticaster.mouseReleased(Unknown Source) > at java.awt.Component.processMouseEvent(Unknown Source) > at javax.swing.JComponent.processMouseEvent(Unknown Source) > at java.awt.Component.processEvent(Unknown Source) > at java.awt.Container.processEvent(Unknown Source) > at java.awt.Component.dispatchEventImpl(Unknown Source) > at java.awt.Container.dispatchEventImpl(Unknown Source) > at java.awt.Component.dispatchEvent(Unknown Source) > at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown > Source) > at java.awt.LightweightDispatcher.processMouseEvent(Unknown > Source) > at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source) > at java.awt.Container.dispatchEventImpl(Unknown Source) > at java.awt.Window.dispatchEventImpl(Unknown Source) > at java.awt.Component.dispatchEvent(Unknown Source) > at java.awt.EventQueue.dispatchEvent(Unknown Source) > at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown > Source) > at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown > Source) > at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown > Source) > at java.awt.EventDispatchThread.pumpEvents(Unknown Source) > at java.awt.EventDispatchThread.pumpEvents(Unknown Source) > at java.awt.EventDispatchThread.run(Unknown Source) > ncsa.hdf.hdf5lib.exceptions.HDF5LibraryException > ncsa.hdf.hdf5lib.exceptions.HDF5LibraryException > at ncsa.hdf.hdf5lib.H5._H5Gcreate(Native Method) > at ncsa.hdf.hdf5lib.H5.H5Gcreate(H5.java:1546) > at > org.scilab.modules.hdf5.write.H5WriteScilabCommonList.writeInDataSet(Unknown Source) > at > org.scilab.modules.hdf5.write.H5WriteScilabMList.writeInDataSet(Unknown Source) > at org.scilab.modules.hdf5.write.H5Write.writeInDataSet(Unknown > Source) > at > org.scilab.modules.xcos.io.scicos.H5RWHandler.writeDiagram(Unknown > Source) > at > org.scilab.modules.xcos.graph.XcosDiagram.dumpToHdf5File(Unknown > Source) > at > org.scilab.modules.xcos.actions.StartAction.createSimulationCommand(Unknown Source) > at > org.scilab.modules.xcos.actions.StartAction.actionPerformed(Unknown > Source) > at javax.swing.AbstractButton.fireActionPerformed(Unknown Source) > at javax.swing.AbstractButton$Handler.actionPerformed(Unknown > Source) > at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown > Source) > at javax.swing.DefaultButtonModel.setPressed(Unknown Source) > at > javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown > Source) > at java.awt.AWTEventMulticaster.mouseReleased(Unknown Source) > at java.awt.Component.processMouseEvent(Unknown Source) > at javax.swing.JComponent.processMouseEvent(Unknown Source) > at java.awt.Component.processEvent(Unknown Source) > at java.awt.Container.processEvent(Unknown Source) > at java.awt.Component.dispatchEventImpl(Unknown Source) > at java.awt.Container.dispatchEventImpl(Unknown Source) > at java.awt.Component.dispatchEvent(Unknown Source) > at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown > Source) > at java.awt.LightweightDispatcher.processMouseEvent(Unknown > Source) > at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source) > at java.awt.Container.dispatchEventImpl(Unknown Source) > at java.awt.Window.dispatchEventImpl(Unknown Source) > at java.awt.Component.dispatchEvent(Unknown Source) > at java.awt.EventQueue.dispatchEvent(Unknown Source) > at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown > Source) > at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown > Source) > at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown > Source) > at java.awt.EventDispatchThread.pumpEvents(Unknown Source) > at java.awt.EventDispatchThread.pumpEvents(Unknown Source) > at java.awt.EventDispatchThread.run(Unknown Source) > > import_from_hdf5: Unable to open file: C:\Users\Piotr Wi?niewski > \AppData\Local\Temp\SCI_TMP_478 > 8_ > \xcos8580468894431797456.h5 > > The simulation file was done with SciLab v5.3.2 32bit on WinXP. It was > working perfectly until now. > > What is wrong? What can I do to be able to use that again? > > I cannot build new models because I cannot edit parameters too. > > > > > Please give me some advice what to do? > > With kind regards > Piotr Wi?niewski > -- > PPCS Piotr Wi?niewski > Komor?w 20A > 58-100 ?widnica > Poland > > tel.: +48 608 053 483 From calixte.denizet at scilab.org Mon Jul 11 16:34:45 2011 From: calixte.denizet at scilab.org (Calixte Denizet) Date: Mon, 11 Jul 2011 16:34:45 +0200 Subject: SEP 68 Message-ID: <4E1B0A05.9070502@scilab.org> Hello, Here is a proposal for Scilab 5.4.0. We would like to add a File Browser to set the Scilab's current working directory. Any comments would be appreciated. Calixte From calixte.denizet at scilab.org Mon Jul 11 16:36:03 2011 From: calixte.denizet at scilab.org (Calixte Denizet) Date: Mon, 11 Jul 2011 16:36:03 +0200 Subject: SEP 068 Message-ID: <4E1B0A53.2080906@scilab.org> I forgot to attach the file... -------------- next part -------------- A non-text attachment was scrubbed... Name: SEP_068_FileBrowser.odt Type: application/vnd.oasis.opendocument.text Size: 87072 bytes Desc: not available URL: From ricci2 at unisi.it Mon Jul 11 16:39:54 2011 From: ricci2 at unisi.it (ricci2) Date: Mon, 11 Jul 2011 16:39:54 +0200 Subject: [scilab-Users] SEP 68 In-Reply-To: <4E1B0A05.9070502@scilab.org> References: <4E1B0A05.9070502@scilab.org> Message-ID: <84c14af3f3e4b4198acad27379d3e857@unisi.it> it would be really useful /maso On Mon, 11 Jul 2011 16:34:45 +0200, Calixte Denizet wrote: > Hello, > > Here is a proposal for Scilab 5.4.0. We would like to add a File Browser > to set the Scilab's current working directory. > > Any comments would be appreciated. > > Calixte From willow at wylch.fastmail.fm Mon Jul 11 23:47:24 2011 From: willow at wylch.fastmail.fm (willow at wylch.fastmail.fm) Date: Mon, 11 Jul 2011 14:47:24 -0700 Subject: [scilab-Users] SEP 068 In-Reply-To: <4E1B0A53.2080906@scilab.org> References: <4E1B0A53.2080906@scilab.org> Message-ID: <4E1B6F6C.7070707@wylch.fastmail.fm> Hello, That looks like it might be useful. I am a commandline oriented user, but I suppose it is missing. I recently did contract work with the 5.3 package and this included an xcos model. The manipulation of blocks and connections is extremely finicky and does not feel stable. In some cases reimplementing the entire model was the quickest way to solve formatting issues. I spent a lot more precious development time on placing blocks and lines on the diagram than I should have. Solid snap behaviour and general improvement of the diagram editor would make xcos more productive for me and would be more important than a file browser. Merci! Willem On 11-07-11 07:36 AM, Calixte Denizet wrote: > I forgot to attach the file... From david.cheze at cea.fr Tue Jul 12 11:54:38 2011 From: david.cheze at cea.fr (CHEZE David 227480) Date: Tue, 12 Jul 2011 11:54:38 +0200 Subject: [scilab-Users] SEP 068 In-Reply-To: <4E1B0A53.2080906@scilab.org> References: <4E1B0A53.2080906@scilab.org> Message-ID: Hi, In addition, it would be nice if filebrowser can handle csv-like text file (extension .txt, .csv): for example configure through an UI the argument to a call to read_csv() function or csv_read() module, then quickview in editvar (must be faster thant it is until now (scilab 5.3.2 windows7 32 bits) to compete with excel) : it will promote the use of scilab for data file first inspection and quick analysis (simple computations and plots could be done in console after that). Thanks, David -----Message d'origine----- De?: Calixte Denizet [mailto:calixte.denizet at scilab.org] Envoy??: lundi 11 juillet 2011 16:36 ??: dev at lists.scilab.org; users at lists.scilab.org Objet?: [scilab-Users] SEP 068 I forgot to attach the file... From Samuel.Gougeon at univ-lemans.fr Tue Jul 12 15:20:45 2011 From: Samuel.Gougeon at univ-lemans.fr (Samuel GOUGEON) Date: Tue, 12 Jul 2011 15:20:45 +0200 Subject: [scilab-Users] SEP 68 In-Reply-To: <4E1B0A05.9070502@scilab.org> References: <4E1B0A05.9070502@scilab.org> Message-ID: <4E1C4A2D.4020805@univ-lemans.fr> Hello Calixte, Thank you for this new useful component within the Scilab IDE. Here are some comments about the proposal. * About actions on right click : - It would be nice to be able to open scripts or text files within an alternative external editor (gedit, ultraedit, notepad++, etc). This would require to be able to declare this editor as an IDE parameter. - IMO, an action on right click would be preferable to set the CWD than double-clicking on it, because AFAIK double-clicking is most always used to open/unfold the dir. I agree that here there is a heading tip to fold/unfold. But double-click should do the same. By the way : There is already an icon in the console toolbar for setting the CWD. Do you plan to keep it? Or why adding CWD through the file browser, since the console is always opened and already proposes this action? - Add "Setting the current SciNotes directory" (that is not already proposed through the console) - delete action : Do you plan to always put the file(s) to the (or a) trash, or is it a plateform/OS dependent action? * Other actions : - It would be handy that all actions on Scilab files (.scg, .xcos, etc) to be also possible by drag and drop from the browser to the console, and from the Scilab interface (console, figure, xcos...) to a directory (default filenaming rule to be set) - What about creating a new dir? - What about moving a file or a set of files from a dir to an other one? - Would other extension-specific actions defined by the OS be active (by double-clicking)? * Other questions & comments - Multiple selection (range of files or file by file) : Would it be possible, before right-clicking? - Would it be possible to resize the widths of columns? - i would prefer sorting file names to not be case sensitive - on the included screenshot example, what does occur when the path-bar is unfolded? Hoping reading you and other users soon Best regards Samuel ----- Message d'origine ----- De : Calixte Denizet Date : 11/07/2011 16:34: > Hello, > > Here is a proposal for Scilab 5.4.0. We would like to add a File Browser to > set the Scilab's current working directory. > > Any comments would be appreciated. > > Calixte > From amsanguino at gmail.com Tue Jul 12 15:26:52 2011 From: amsanguino at gmail.com (Alberto Marin) Date: Tue, 12 Jul 2011 15:26:52 +0200 Subject: Linear programming with scilab 5 Message-ID: Dear all, I have been using scilab 4 for a few years and now I am trying to upgrade to 5.3. Linear Programming, however, is making the process really complicated and I hope someone here can help. In the example attached there is a linear program that can be solved easily with scilab 4 (commented linpro line) but fails whenever I try to use Karmarkar in 5.3. The function call seems to be correct but the algorithm is unable to find a feasible initial solution. If I provide the trivial one (all variables equal zero) it just returns it as the final solution. I am missing something? I must confess not being familiar with the algorithm itself since I have always used the simplex before. Is there any parameter I should tweak? Thanks a lot, Alberto -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: lpvskmk.sce Type: application/octet-stream Size: 40541 bytes Desc: not available URL: From sylvestre.ledru at scilab.org Tue Jul 12 20:24:05 2011 From: sylvestre.ledru at scilab.org (Sylvestre Ledru) Date: Tue, 12 Jul 2011 20:24:05 +0200 Subject: [scilab-Users] SEP 068 In-Reply-To: <4E1B6F6C.7070707@wylch.fastmail.fm> References: <4E1B0A53.2080906@scilab.org> <4E1B6F6C.7070707@wylch.fastmail.fm> Message-ID: <1310495045.2701.23.camel@losinj.inria.fr> Le lundi 11 juillet 2011 ? 14:47 -0700, willow at wylch.fastmail.fm a ?crit : > Hello, > > That looks like it might be useful. I am a commandline oriented user, > but I suppose it is missing. > > I recently did contract work with the 5.3 package and this included an > xcos model. The manipulation of blocks and connections is extremely > finicky and does not feel stable. In some cases reimplementing the > entire model was the quickest way to solve formatting issues. I spent a > lot more precious development time on placing blocks and lines on the > diagram than I should have. Solid snap behaviour and general improvement > of the diagram editor would make xcos more productive for me and would > be more important than a file browser. Hello Willem, Don't hesitate to report such issues on the bug tracker [1]. It helps to have this kind of feedbacks with a way to reproduce the issues. Sylvestre PS: next time, start a new discussion instead of forking an existing and unrelated one ;) [1] http://bugzilla.scilab.org/ From aditya.shirolkar at gmail.com Wed Jul 13 07:54:56 2011 From: aditya.shirolkar at gmail.com (Aditya Shirolkar) Date: Wed, 13 Jul 2011 11:24:56 +0530 Subject: scilab on fedora-15 x86_64 Message-ID: Hi, I tried to install scilab (Scilab 5.3.2 for 64 bits) on a fedora-15 x86_64 system. The installation failed because of lack of dependent libraries. In particular it failed to load libxss. I believe there would be others as well. - can someone point me to a scilab dependency list, if there is one? (even better would be a repository i can point yum to) Thanks in advance! - aditya -------------- next part -------------- An HTML attachment was scrubbed... URL: From amsanguino at gmail.com Wed Jul 13 09:37:37 2011 From: amsanguino at gmail.com (Alberto Marin) Date: Wed, 13 Jul 2011 09:37:37 +0200 Subject: Linear programming with scilab 5 Message-ID: It seems this message didn't get through yesterday so I send it again: Dear all, I have been using scilab 4 for a few years and now I am trying to upgrade to 5.3. Linear Programming, however, is making the process really complicated and I hope someone here can help. In the example below there is a linear program that can be solved easily with scilab 4 (commented linpro line) but fails whenever I try to use Karmarkar in 5.3. The function call seems to be correct but the algorithm is unable to find a feasible initial solution. If I provide the trivial one (all variables equal zero) it just returns it as the final solution. I am missing something? I must confess not being familiar with the algorithm itself since I have always used the simplex before. Is there any parameter I should tweak? Thanks a lot, Alberto code: eqMat=[0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 -1.0 0.0 ; -1.0 0.0 0.0 0.0 -1.0 0.0 -1.0 -1.0 0.0 1.7 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 -1.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 -1.0 0.0 0.0 -1.0 0.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 -1.0 1.1 0.0 -1.0 0.0 -1.0 0.0 -1.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 ; 1.0 0.0 0.0 0.0 1.0 0.0 2.0 1.0 0.0 -1.7 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 -1.1 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 ; 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 -1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 1.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 -1.0 -1.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 ; 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 -1.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 -1.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ] eqRhs=[0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0]; ub=[1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;0.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;100.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;0.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;0.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;0.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0]; lb=[-1000000.0;-1000000.0;0.0;-1000000.0;0.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;0.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;0.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;0.0;-1000000.0;0.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;0.0;-1000000.0;0.0;0.0;-1000000.0;-1000000.0;0.0;-1000000.0;0.0;-1000000.0;-1000000.0;0.0;-1000000.0;-1000000.0;0.0;0.0;0.0;0.0;0.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0]; ineqRhs=[0.0;-0.0;-0.0]; ineqMat=[ 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 1.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -1.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 ; -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 1.0 -0.0 -0.0 -0.0 -0.0 -0.0 ]; obj=[-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;1.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-1.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0]; //[xopt,lagr,f]=linpro(obj,[eqMat;ineqMat],[eqRhs;ineqRhs],lb,ub,size(eqMat,1)) [xopt,fopt,exitflag,iter,yopt]=karmarkar(eqMat,eqRhs,obj,[],[],[],[],[],[],[],lb,ub); -------------- next part -------------- An HTML attachment was scrubbed... URL: From simon.gareste at scilab.org Wed Jul 13 09:44:16 2011 From: simon.gareste at scilab.org (Simon GARESTE) Date: Wed, 13 Jul 2011 09:44:16 +0200 Subject: [scilab-Users] scilab on fedora-15 x86_64 In-Reply-To: References: Message-ID: <4E1D4CD0.7020406@scilab.org> Hi, http://wiki.scilab.org/Dependencies%20of%20Scilab%205.X should do the trick Simon On 13/07/2011 07:54, Aditya Shirolkar wrote: > Hi, > > I tried to install scilab (Scilab 5.3.2 for 64 bits) on a fedora-15 > x86_64 system. > The installation failed because of lack of dependent libraries. > > In particular it failed to load libxss. > I believe there would be others as well. > > - can someone point me to a scilab dependency list, if there is one? > (even better would be a repository i can point yum to) > > > Thanks in advance! > > - aditya -- Simon Gareste Support& Development Engineer -- Consortium Scilab Digiteo Domaine de Voluceau Rocquencourt - B.P. 105 78153 Le Chesnay Cedex -- From stephane.mottelet at utc.fr Wed Jul 13 09:51:56 2011 From: stephane.mottelet at utc.fr (=?ISO-8859-1?Q?St=E9phane_Mottelet?=) Date: Wed, 13 Jul 2011 09:51:56 +0200 Subject: [scilab-Users] Linear programming with scilab 5 In-Reply-To: References: Message-ID: <4E1D4E9C.4010402@utc.fr> Hello, I think that linpro is now part of the quapro atoms module (because of license issues with the code of E. Casas). S. Le 13/07/2011 09:37, Alberto Marin a ?crit : > It seems this message didn't get through yesterday so I send it again: > > Dear all, > > I have been using scilab 4 for a few years and now I am trying to > upgrade to 5.3. Linear Programming, however, is making the process > really complicated and I hope someone here can help. > > In the example below there is a linear program that can be solved > easily with scilab 4 (commented linpro line) but fails whenever I try > to use Karmarkar in 5.3. The function call seems to be correct but the > algorithm is unable to find a feasible initial solution. If I provide > the trivial one (all variables equal zero) it just returns it as the > final solution. I am missing something? I must confess not being > familiar with the algorithm itself since I have always used the > simplex before. Is there any parameter I should tweak? > Thanks a lot, > Alberto > > code: > eqMat=[0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 > -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 1.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 > 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 > -1.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 > 0.0 0.0 -1.0 0.0 0.0 0.0 -1.0 0.0 ; > -1.0 0.0 0.0 0.0 -1.0 0.0 -1.0 -1.0 0.0 1.7 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 -1.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 -1.0 -1.0 0.0 0.0 -1.0 0.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 -1.0 > 1.1 0.0 -1.0 0.0 -1.0 0.0 -1.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 > 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 > 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 > 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 > 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 > 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 ; > 1.0 0.0 0.0 0.0 1.0 0.0 2.0 1.0 0.0 -1.7 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 -1.1 0.0 > 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 ; > 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 > 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 -1.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 > 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 1.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 -1.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 -1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 1.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 > 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 > 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 > 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 > 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 > 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 -1.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 -1.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 > 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 -1.0 > -1.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 ; > 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 1.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 1.0 0.0 -1.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 -1.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 > 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 -1.0 -1.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 -1.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 > 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 -1.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 1.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ] > > > eqRhs=[0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0]; > > ub=[1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;0.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;100.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;0.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;0.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;0.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0]; > > lb=[-1000000.0;-1000000.0;0.0;-1000000.0;0.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;0.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;0.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;0.0;-1000000.0;0.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;0.0;-1000000.0;0.0;0.0;-1000000.0;-1000000.0;0.0;-1000000.0;0.0;-1000000.0;-1000000.0;0.0;-1000000.0;-1000000.0;0.0;0.0;0.0;0.0;0.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0]; > > ineqRhs=[0.0;-0.0;-0.0]; > > ineqMat=[ 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; -0.0 > -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 > -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 > -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 1.0 -0.0 -0.0 > -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 > -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 > -0.0 -1.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 > -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 > -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 > -0.0 -0.0 -0.0 ; -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 > -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 > -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 > -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 > -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 > -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 > -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 > -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 > -0.0 -0.0 1.0 -0.0 -0.0 -0.0 -0.0 -0.0 ]; > > obj=[-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;1.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-1.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0]; > //[xopt,lagr,f]=linpro(obj,[eqMat;ineqMat],[eqRhs;ineqRhs],lb,ub,size(eqMat,1)) > [xopt,fopt,exitflag,iter,yopt]=karmarkar(eqMat,eqRhs,obj,[],[],[],[],[],[],[],lb,ub); > -------------- next part -------------- An HTML attachment was scrubbed... URL: From clement.david at scilab.org Wed Jul 13 10:02:10 2011 From: clement.david at scilab.org (=?ISO-8859-1?Q?Cl=E9ment?= David) Date: Wed, 13 Jul 2011 10:02:10 +0200 Subject: [scilab-Users] scilab on fedora-15 x86_64 In-Reply-To: References: Message-ID: <1310544130.6602.21.camel@pinarellu.inria.fr> Hi, I use Fedora as my main distro and everything works for me. First, install the dependencies (listed at [0]). Then use the thirdparties [1] for not provided libraries (jhdf5, jogl, gluegen-rt) or with wrong version ones (flexdock, saxon) Put the thirdparties on scilab/bin for shared libraries and on a thirdparty directory ("scilab/thirdparty") for jars. After dropping them, you should have : $ ls bin/*.so bin/libgluegen-rt.so bin/libjhdf5.so bin/libjogl_awt.so bin/libjogl_cg.so bin/libjogl.so $ ls thirdparty/ flexdock-0.5.2.jar gluegen-rt.jar jgraphx.jar jhdf5.jar jogl.jar saxon.jar [0]: http://wiki.scilab.org/Dependencies%20of%20Scilab%205.X [1]: http://wiki.scilab.org/Compiling Scilab 5.x under GNU-Linux Unix - FAQ#Some_packages_are_missing_when_I_compile_Scilab_console_module._Where_can_I_find_them_.3F -- Cl?ment Le mercredi 13 juillet 2011 ? 11:24 +0530, Aditya Shirolkar a ?crit : > Hi, > > I tried to install scilab (Scilab 5.3.2 for 64 bits) on a fedora-15 > x86_64 system. > The installation failed because of lack of dependent libraries. > > In particular it failed to load libxss. > I believe there would be others as well. > > - can someone point me to a scilab dependency list, if there is one? > (even better would be a repository i can point yum to) > > > Thanks in advance! > > - aditya -- Cl?ment David From lukeaarond at gmail.com Wed Jul 13 17:44:33 2011 From: lukeaarond at gmail.com (lukeaarond) Date: Wed, 13 Jul 2011 08:44:33 -0700 (PDT) Subject: wget speed Message-ID: <1310571873589-3166454.post@n3.nabble.com> Currently I am using unix(wget -O file.txt http://url.org) to download source codes. However, the downloaded file can often times be several Mbs and take several minutes to download. With the hopes of cutting this time down I have two questions: 1) Is there a way to speed up wget? 2) Sometimes I only need the title of the webpage (or the first few lines of the source code). Is there a way to specify how much many lines of the file to download? Thank you. -- View this message in context: http://mailinglists.scilab.org/wget-speed-tp3166454p3166454.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From lukeaarond at gmail.com Wed Jul 13 19:01:32 2011 From: lukeaarond at gmail.com (lukeaarond) Date: Wed, 13 Jul 2011 10:01:32 -0700 (PDT) Subject: decompress text files Message-ID: <1310576492842-3166691.post@n3.nabble.com> I have a compressed text file (Ctext.txt.gz) that I would like to decompress and save as a normal text file (Ctext.txt). I found a unix command (gunzip) that possibly does this, but I cannot get it to work. My code in scilab is: unix('gunzip -c Ctext.txt.gz') This code seems to be doing nothing. What am I doing wrong? or is there a better way to decompress this file? Thank you. -- View this message in context: http://mailinglists.scilab.org/decompress-text-files-tp3166691p3166691.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From fresneda at gmail.com Wed Jul 13 19:15:46 2011 From: fresneda at gmail.com (Rodrigo Fresneda) Date: Wed, 13 Jul 2011 14:15:46 -0300 Subject: scilab graphics and intel (linux) Message-ID: <1310577346.2850.6.camel@debian.ufabc.edu.br> Dear fellow scilab users, is there a solution for scilab's graphics rendering under linux with an intel graphics cards and direct rendering enabled? I am running scilab 5.2.2 (debian package) and the stock debian kernel 2.6.32-5-amd64 on debian stable. best, rodrigo. From BlanchardJ at ieee.org Wed Jul 13 19:15:12 2011 From: BlanchardJ at ieee.org (Jonathan Blanchard) Date: Wed, 13 Jul 2011 14:15:12 -0300 Subject: [scilab-Users] scilab graphics and intel (linux) In-Reply-To: <1310577346.2850.6.camel@debian.ufabc.edu.br> References: <1310577346.2850.6.camel@debian.ufabc.edu.br> Message-ID: On Wed, Jul 13, 2011 at 2:15 PM, Rodrigo Fresneda wrote: > Dear fellow scilab users, > > is there a solution for scilab's > graphics rendering under linux with > an intel graphics cards and direct > rendering enabled? > I am running scilab 5.2.2 (debian package) and > the stock debian kernel 2.6.32-5-amd64 on debian stable. > > best, > rodrigo. > > I generally have to disable direct rendering when using Scilab. This can be done by setting LIBGL_ALWAYS_INDIRECT to 1 before starting Scilab. I'm not aware of the issue with intel and DRI under Linux but it might help. Jonathan Blanchard From vogt at centre-cired.fr Wed Jul 13 19:15:22 2011 From: vogt at centre-cired.fr (Adrien Vogt-Schilb) Date: Wed, 13 Jul 2011 19:15:22 +0200 Subject: [scilab-Users] decompress text files In-Reply-To: <1310576492842-3166691.post@n3.nabble.com> References: <1310576492842-3166691.post@n3.nabble.com> Message-ID: <4E1DD2AA.1020905@centre-cired.fr> hi are you sure you've got gunzip available in your computer? unix executes command lines. be sure you understand the way those work. (if not, http://en.wikipedia.org/wiki/Command-line_interface) for instance, open a terminal, go to the relevant directory and try to execute your command gunzip -c Ctext.txt.gz (not from scilab) if this works outside scilab, it should work with unix. if it works outside scilab but doesn't work from unix inside scilab, that could be because the current directory in scilab is not the good one if you dont have gunzip available in your computer, you probably have another zip manager. find out how to use it with command line (for instance if you have winzip, google "use winzip with command line", this should help. (then consider droping winzip for 7zip)) hope this helps best regards On 13/07/2011 19:01, lukeaarond wrote: > I have a compressed text file (Ctext.txt.gz) that I would like to decompress > and save as a normal text file (Ctext.txt). I found a unix command (gunzip) > that possibly does this, but I cannot get it to work. My code in scilab is: > > unix('gunzip -c Ctext.txt.gz') > > This code seems to be doing nothing. What am I doing wrong? or is there a > better way to decompress this file? > > Thank you. > > -- > View this message in context: http://mailinglists.scilab.org/decompress-text-files-tp3166691p3166691.html > Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. -- *Adrien Vogt-Schilb* Research Fellow vogt at centre-cired.fr Tel: (+33) 1 43 94 73 96 Fax: (+33) 1 43 94 73 70 CIRED 45 bis, Av de la Belle Gabrielle F-94736 Nogent-sur-Marne http://www.centre-cired.fr/ -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: logocired.png Type: image/png Size: 4092 bytes Desc: not available URL: From fresneda at gmail.com Wed Jul 13 19:28:47 2011 From: fresneda at gmail.com (Rodrigo Fresneda) Date: Wed, 13 Jul 2011 14:28:47 -0300 Subject: [scilab-Users] scilab graphics and intel (linux) In-Reply-To: References: <1310577346.2850.6.camel@debian.ufabc.edu.br> Message-ID: <1310578127.2850.7.camel@debian.ufabc.edu.br> Thanks for the workaround, Jonathan. Is this fixed in newer versions of Scilab? On Wed, 2011-07-13 at 14:15 -0300, Jonathan Blanchard wrote: > On Wed, Jul 13, 2011 at 2:15 PM, Rodrigo Fresneda wrote: > > Dear fellow scilab users, > > > > is there a solution for scilab's > > graphics rendering under linux with > > an intel graphics cards and direct > > rendering enabled? > > I am running scilab 5.2.2 (debian package) and > > the stock debian kernel 2.6.32-5-amd64 on debian stable. > > > > best, > > rodrigo. > > > > > > I generally have to disable direct rendering when using Scilab. This > can be done by setting LIBGL_ALWAYS_INDIRECT to 1 before starting > Scilab. I'm not aware of the issue with intel and DRI under Linux but > it might help. > > Jonathan Blanchard From lukeaarond at gmail.com Wed Jul 13 20:26:47 2011 From: lukeaarond at gmail.com (lukeaarond) Date: Wed, 13 Jul 2011 11:26:47 -0700 (PDT) Subject: decompress text files In-Reply-To: <4E1DD2AA.1020905@centre-cired.fr> References: <1310576492842-3166691.post@n3.nabble.com> <4E1DD2AA.1020905@centre-cired.fr> Message-ID: <1310581607935-3166940.post@n3.nabble.com> oh yes I forgot I need the .exe file. That helps alot, thank you very much! -- View this message in context: http://mailinglists.scilab.org/decompress-text-files-tp3166691p3166940.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From aditya.shirolkar at gmail.com Thu Jul 14 07:48:03 2011 From: aditya.shirolkar at gmail.com (Aditya Shirolkar) Date: Thu, 14 Jul 2011 11:18:03 +0530 Subject: [scilab-Users] scilab on fedora-15 x86_64 In-Reply-To: <1310544130.6602.21.camel@pinarellu.inria.fr> References: <1310544130.6602.21.camel@pinarellu.inria.fr> Message-ID: merci, its up & running. The thirdparties present in scilab tarball seem sufficient enough, i haven't tried out all features though. I do hope scilab hits fedora repo soon. Aditya -------------- next part -------------- An HTML attachment was scrubbed... URL: From amsanguino at gmail.com Thu Jul 14 15:17:51 2011 From: amsanguino at gmail.com (Alberto Marin) Date: Thu, 14 Jul 2011 15:17:51 +0200 Subject: [scilab-Users] Linear programming with scilab 5 In-Reply-To: <4E1D4E9C.4010402@utc.fr> References: <4E1D4E9C.4010402@utc.fr> Message-ID: Linpro can indeed be installed in scilab 5.3, and it works fine when I use it in scilab. However, any attempt to call linpro from through the Java interface leads to a general crash: # A fatal error has been detected by the Java Runtime Environment: # # SIGSEGV (0xb) at pc=0x00007fc925a8571e, pid=5580, tid=140502169204480 # # JRE version: 6.0_20-b20 # Java VM: OpenJDK 64-Bit Server VM (19.0-b09 mixed mode linux-amd64 compressed oops) # Derivative: IcedTea6 1.9.8 # Distribution: Ubuntu 10.04.1 LTS, package 6b20-1.9.8-0ubuntu1~10.04.1 # Problematic frame: # C [libscioutput_stream.so.5+0x871e] msgs_+0x2e # # An error report file with more information is saved as: # /home/amarin/NetBeansProjects/newst cambio/CaMBio/hs_err_pid5580.log # # If you would like to submit a bug report, please include # instructions how to reproduce the bug and visit: # https://bugs.launchpad.net/ubuntu/+source/openjdk-6/ This happened to me also with linpro in scilab 4.2 in every 64 bits machine (as far as I've tested, it is the same now) and it is the reason why I decided to upgrade in the first place. If anyone could provide insight in this error or how to use Karmarkar to solve these rank deficient problems I would be really grateful. All the best, Alberto 2011/7/13 St?phane Mottelet > ** > Hello, > > I think that linpro is now part of the quapro atoms module (because of > license issues with the code of E. Casas). > > S. > > Le 13/07/2011 09:37, Alberto Marin a ?crit : > > It seems this message didn't get through yesterday so I send it again: > > Dear all, > > I have been using scilab 4 for a few years and now I am trying to upgrade > to 5.3. Linear Programming, however, is making the process really > complicated and I hope someone here can help. > > In the example below there is a linear program that can be solved easily > with scilab 4 (commented linpro line) but fails whenever I try to use > Karmarkar in 5.3. The function call seems to be correct but the algorithm is > unable to find a feasible initial solution. If I provide the trivial one > (all variables equal zero) it just returns it as the final solution. I am > missing something? I must confess not being familiar with the algorithm > itself since I have always used the simplex before. Is there any parameter I > should tweak? > Thanks a lot, > Alberto > > code: > eqMat=[0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 > 1.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 > 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 > 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 > -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 > -1.0 0.0 ; > -1.0 0.0 0.0 0.0 -1.0 0.0 -1.0 -1.0 0.0 1.7 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > -1.0 0.0 0.0 0.0 0.0 -1.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 -1.0 0.0 > 0.0 -1.0 0.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 -1.0 1.1 0.0 -1.0 0.0 -1.0 0.0 > -1.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 > 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 > 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 > 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 > 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 -1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 > 0.0 ; > 1.0 0.0 0.0 0.0 1.0 0.0 2.0 1.0 0.0 -1.7 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 1.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 > 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 -1.1 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 ; > 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 > 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > -1.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 > -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > -1.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 > 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 -1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 1.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 1.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 > 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 > ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > -1.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 -1.0 -1.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 ; > 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 -1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 -1.0 0.0 0.0 0.0 > -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 > 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 > -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 -1.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 -1.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 -1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 > 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 -1.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 -1.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ; > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ] > > > > eqRhs=[0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0]; > > > ub=[1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;0.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;100.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;0.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;0.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;0.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0;1000000.0]; > > > lb=[-1000000.0;-1000000.0;0.0;-1000000.0;0.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;0.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;0.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;0.0;-1000000.0;0.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;0.0;-1000000.0;0.0;0.0;-1000000.0;-1000000.0;0.0;-1000000.0;0.0;-1000000.0;-1000000.0;0.0;-1000000.0;-1000000.0;0.0;0.0;0.0;0.0;0.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0;-1000000.0]; > > ineqRhs=[0.0;-0.0;-0.0]; > > ineqMat=[ 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 > 0.0 0.0 0.0 0.0 0.0 ; -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 > -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 > -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 1.0 > -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 > -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 > -0.0 -1.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 > -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 > -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 ; > -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 > -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 > -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 > -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 > -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 > -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 > -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 > -0.0 -0.0 -0.0 1.0 -0.0 -0.0 -0.0 -0.0 -0.0 ]; > > > obj=[-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;1.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-1.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0;-0.0]; > > //[xopt,lagr,f]=linpro(obj,[eqMat;ineqMat],[eqRhs;ineqRhs],lb,ub,size(eqMat,1)) > > [xopt,fopt,exitflag,iter,yopt]=karmarkar(eqMat,eqRhs,obj,[],[],[],[],[],[],[],lb,ub); > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From solerec at eircom.net Thu Jul 14 19:51:15 2011 From: solerec at eircom.net (christophe) Date: Thu, 14 Jul 2011 18:51:15 +0100 Subject: Quantile regression Message-ID: <4E1F2C93.4040606@eircom.net> Hi Any libraries for quantile regression in scilab please? Chris From grocer.toolbox at gmail.com Thu Jul 14 21:53:29 2011 From: grocer.toolbox at gmail.com (Eric Dubois) Date: Thu, 14 Jul 2011 21:53:29 +0200 Subject: [scilab-Users] Quantile regression In-Reply-To: <4E1F2C93.4040606@eircom.net> References: <4E1F2C93.4040606@eircom.net> Message-ID: Hi Grocer (http://dubois.ensae.net/grocer.html) version 1.5 (release planned for August or September) will integrate basic quantile regression. But I can provide you a test version if you need it. ?ric. 2011/7/14 christophe > Hi > > Any libraries for quantile regression in scilab please? > > Chris > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Samuel.Gougeon at univ-lemans.fr Fri Jul 15 19:38:34 2011 From: Samuel.Gougeon at univ-lemans.fr (Samuel GOUGEON) Date: Fri, 15 Jul 2011 19:38:34 +0200 Subject: [scilab-Users] wget speed In-Reply-To: <1310571873589-3166454.post@n3.nabble.com> References: <1310571873589-3166454.post@n3.nabble.com> Message-ID: <4E207B1A.5010908@univ-lemans.fr> Hello, These are wget questions, not Scilab ones ;) Samuel ----- Message d'origine ----- De : lukeaarond Date : 13/07/2011 17:44: > Currently I am using unix(wget -O file.txt http://url.org) to download source > codes. However, the downloaded file can often times be several Mbs and take > several minutes to download. With the hopes of cutting this time down I have > two questions: > > 1) Is there a way to speed up wget? > > 2) Sometimes I only need the title of the webpage (or the first few lines of > the source code). Is there a way to specify how much many lines of the file > to download? > > Thank you. > > -- > View this message in context: http://mailinglists.scilab.org/wget-speed-tp3166454p3166454.html > Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. > From calixte.denizet at scilab.org Sat Jul 16 20:23:51 2011 From: calixte.denizet at scilab.org (calixte) Date: Sat, 16 Jul 2011 20:23:51 +0200 Subject: [scilab-Users] SEP 068 In-Reply-To: References: <4E1B0A53.2080906@scilab.org> Message-ID: <1310840631.24616.567.camel@Calixte-Dell> Le mardi 12 juillet 2011 ? 11:54 +0200, CHEZE David 227480 a ?crit : > Hi, > Hi David, > In addition, it would be nice if filebrowser can handle csv-like text file (extension .txt, .csv): for example configure through an UI the argument to a call to read_csv() function or csv_read() module, then quickview in editvar (must be faster thant it is until now (scilab 5.3.2 windows7 32 bits) to compete with excel) : it will promote the use of scilab for data file first inspection and quick analysis (simple computations and plots could be done in console after that). > Good idea... but we need to improve csv handling, so this feature would be probably added after the 5.4 release. Thanks Calixte > Thanks, > > David > > -----Message d'origine----- > De : Calixte Denizet [mailto:calixte.denizet at scilab.org] > Envoy? : lundi 11 juillet 2011 16:36 > ? : dev at lists.scilab.org; users at lists.scilab.org > Objet : [scilab-Users] SEP 068 > > I forgot to attach the file... From iai at axelspace.com Sun Jul 17 09:27:30 2011 From: iai at axelspace.com (Iai Masafumi ax) Date: Sun, 17 Jul 2011 16:27:30 +0900 Subject: loader.sce in the contrib folder Message-ID: <4E228EE2.1090806@axelspace.com> Hi, I want to know what I have to do to have a file, "SCI/contrib/loader.sce," be created during installation, or whether I installed Scilab wrong. Without "loader.sce", the "toolbox" menu does not appear on the menu bar. I have installed Scilab5.3.2 (scilab-5.3.2.bin.linux-i686.tar.gz) on Ubuntu11.04 running on VMWare Player 3.1.4 on Windows7, but did not see a file "loader.sce" in the "contrib" folder . When installing it, I simply extracted files from the binary, following the instruction given in Scilab wiki (http://wiki.scilab.org/howto/install/linux). I am not very familiar with linux in general. I also have Scilab 5.3.2 (32bit) installed on Windows 7, which HAS "loader.sce" in the "contrib" folder. "loader.sce" was created during installation. Why I do not see "contrib/loader.sce" on Ubuntu? Any suggestion would be appreciated. Thank you, Iai From faangka at hotmail.com Fri Jul 15 20:25:56 2011 From: faangka at hotmail.com (Kanticha Korsesthakarn) Date: Sat, 16 Jul 2011 01:25:56 +0700 Subject: Problem with opening the program Message-ID: I downloaded this program After installed the program then another window pop up on the screen Scilab quit unexpectedly Here is Comments Process: scilab-bin [1601] Path: /Applications/scilab-5.3.2.app/Contents/MacOS/bin/scilab Identifier: org.scilab.modules.jvm.Scilab Version: ??? (???) Code Type: X86-64 (Native) Parent Process: sh [1564] Date/Time: 2011-07-16 01:22:08.095 +0700 OS Version: Mac OS X 10.6.8 (10K540) Report Version: 6 Interval Since Last Report: 35061 sec Crashes Since Last Report: 6 Per-App Interval Since Last Report: 38 sec Per-App Crashes Since Last Report: 6 Anonymous UUID: FDA7E09A-7FC6-4948-AA35-44C551935967 Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Codes: KERN_INVALID_ADDRESS at 0xfffffffffffffff8 Crashed Thread: 1 Thread 0: Dispatch queue: com.apple.main-thread 0 libSystem.B.dylib 0x00007fff85bddd7a mach_msg_trap + 10 1 libSystem.B.dylib 0x00007fff85bde3ed mach_msg + 59 2 com.apple.CoreFoundation 0x00007fff84f85932 __CFRunLoopRun + 1698 3 com.apple.CoreFoundation 0x00007fff84f84dbf CFRunLoopRunSpecific + 575 4 com.apple.CoreFoundation 0x00007fff84f84b46 CFRunLoopRun + 70 5 libscishell.5.dylib 0x0000000100008fab initMacOSXEnv + 395 6 scilab-bin 0x0000000100002bad 0x100000000 + 11181 7 scilab-bin 0x0000000100002994 0x100000000 + 10644 Thread 1 Crashed: 0 libSystem.B.dylib 0x00007fff85c281b0 _longjmp + 48 Thread 2: Dispatch queue: com.apple.libdispatch-manager 0 libSystem.B.dylib 0x00007fff85bf6c0a kevent + 10 1 libSystem.B.dylib 0x00007fff85bf8add _dispatch_mgr_invoke + 154 2 libSystem.B.dylib 0x00007fff85bf87b4 _dispatch_queue_invoke + 185 3 libSystem.B.dylib 0x00007fff85bf82de _dispatch_worker_thread2 + 252 4 libSystem.B.dylib 0x00007fff85bf7c08 _pthread_wqthread + 353 5 libSystem.B.dylib 0x00007fff85bf7aa5 start_wqthread + 13 Thread 3: 0 libSystem.B.dylib 0x00007fff85bf7a2a __workq_kernreturn + 10 1 libSystem.B.dylib 0x00007fff85bf7e3c _pthread_wqthread + 917 2 libSystem.B.dylib 0x00007fff85bf7aa5 start_wqthread + 13 Thread 1 crashed with X86 Thread State (64-bit): rax: 0x0000000000000001 rbx: 0x0000000000000000 rcx: 0x00007fff85c3e1da rdx: 0x0000000000000000 rdi: 0x00000001000d0b00 rsi: 0x0000000000000001 rbp: 0x0000000000000000 rsp: 0x0000000000000000 r8: 0x0000000102b53a00 r9: 0x0000000000000016 r10: 0x00007fff85c280fa r11: 0x0000000000000246 r12: 0x0000000000000000 r13: 0x0000000000000000 r14: 0x0000000000000000 r15: 0x0000000000000000 rip: 0x00007fff85c281b0 rfl: 0x0000000000010202 cr2: 0xfffffffffffffff8 Binary Images: 0x100000000 - 0x100002ff7 +scilab-bin ??? (???) <59BC8905-1C8F-4C1C-3C79-A9235991400B> /Applications/scilab-5.3.2.app/Contents/MacOS/bin/scilab-bin 0x100005000 - 0x10000dfef +libscishell.5.dylib 9.2.0 (compatibility 9.0.0) <05CCD93D-3059-79A3-88FF-E31BF78ABF28> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscishell.5.dylib 0x100012000 - 0x10008aff7 +libscicore.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscicore.5.dylib 0x10019e000 - 0x1001a3fff +libscicompletion.5.dylib 9.2.0 (compatibility 9.0.0) <5F369FCA-9A45-EA2B-9C35-38C002C3F3EE> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscicompletion.5.dylib 0x1001a7000 - 0x1001a9fff +libscilocalization.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscilocalization.5.dylib 0x1001b2000 - 0x1001c4fff +libsciio.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libsciio.5.dylib 0x100283000 - 0x100285ff7 +libscilab.0.dylib ??? (???) <3543EE40-300B-5E48-2877-2C31EA1A5840> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscilab.0.dylib 0x100287000 - 0x10028bfff +libsciparameters.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libsciparameters.5.dylib 0x10028e000 - 0x100290ff7 +libscicall_scilab.5.dylib 9.2.0 (compatibility 9.0.0) <67775839-4F23-81B5-3731-7B56E4695E4B> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscicall_scilab.5.dylib 0x100293000 - 0x1002a2ff7 +libscidouble.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscidouble.5.dylib 0x10035f000 - 0x100366fff +libsciboolean.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libsciboolean.5.dylib 0x100423000 - 0x100424fff +libsciintersci.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libsciintersci.5.dylib 0x100427000 - 0x10042efff +libintl.8.dylib 9.2.0 (compatibility 9.0.0) <2A31280A-EDB4-0645-E839-85DD47F7A422> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/thirdparty/libintl.8.dylib 0x100433000 - 0x100438ff7 +libscispecial_functions.5.dylib 9.2.0 (compatibility 9.0.0) <63EFD4E0-10FB-DEC9-B090-3C230E6FE281> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscispecial_functions.5.dylib 0x1004f5000 - 0x10050cfff +libscistatistics.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscistatistics.5.dylib 0x1005ca000 - 0x1005ccfff +libscitime.5.dylib 9.2.0 (compatibility 9.0.0) <0A228956-C0A1-69BF-4118-BF955E0C23C1> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscitime.5.dylib 0x1005cf000 - 0x1005cffff +libsciwindows_tools.5.dylib 9.2.0 (compatibility 9.0.0) <1497BEE2-A89C-179F-F506-DAFDCDAF04F2> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libsciwindows_tools.5.dylib 0x1005d2000 - 0x10061aff7 +libscisparse.5.dylib 9.2.0 (compatibility 9.0.0) <18DFA772-C86A-1CA3-8E07-8CBD000B9DEF> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscisparse.5.dylib 0x1006db000 - 0x100705ff7 +libscipolynomials.5.dylib 9.2.0 (compatibility 9.0.0) <6F0062FA-EEDD-1098-6DE0-EA501234759B> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscipolynomials.5.dylib 0x1007c5000 - 0x100890ff7 +libscicacsd.5.dylib 9.2.0 (compatibility 9.0.0) <7493EC79-E8AD-135A-B066-85754C37B6F1> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscicacsd.5.dylib 0x100953000 - 0x10095bfff +libmx.5.dylib 9.2.0 (compatibility 9.0.0) <47FC6362-ACB0-B9AD-B1DD-EBFA2EABABA6> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libmx.5.dylib 0x100962000 - 0x10096afff +libmat.5.dylib 9.2.0 (compatibility 9.0.0) <79D07DB1-365B-CD56-5162-1E83B28908A9> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libmat.5.dylib 0x100971000 - 0x1009d3fff +libscidifferential_equations.5.dylib 9.2.0 (compatibility 9.0.0) <3BBDA419-EEAE-B0DF-B58D-ABA2EE2DB355> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscidifferential_equations.5.dylib 0x100a9d000 - 0x100aa5fff +libmex.5.dylib 9.2.0 (compatibility 9.0.0) <87C7E529-5580-83A0-3402-55E81C679E7D> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libmex.5.dylib 0x100aac000 - 0x100abaff7 +libscidata_structures.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscidata_structures.5.dylib 0x100b78000 - 0x100ba4fff +libsciinteger.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libsciinteger.5.dylib 0x100c63000 - 0x100c87ff7 +libscilinear_algebra.5.dylib 9.2.0 (compatibility 9.0.0) <0AE0668C-81C6-F3FF-E417-7F65D26B3A44> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscilinear_algebra.5.dylib 0x100d47000 - 0x100d4dff7 +libscidynamic_link.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscidynamic_link.5.dylib 0x100e53000 - 0x100e59fff +libscifunctions.5.dylib 9.2.0 (compatibility 9.0.0) <78E8274E-7544-59AA-6166-DAFE112CD5FD> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscifunctions.5.dylib 0x100f17000 - 0x100f25ff7 +libscihdf5.5.dylib 9.2.0 (compatibility 9.0.0) <38AED9CA-4CCA-841F-267D-32C28F241E95> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscihdf5.5.dylib 0x100f2e000 - 0x100f2efff +libscipvm.5.dylib 9.2.0 (compatibility 9.0.0) <3F8D4FBA-FB8A-9DE3-15DF-201E822217CA> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscipvm.5.dylib 0x100f31000 - 0x100f35fff +libscifftw.5.dylib 9.2.0 (compatibility 9.0.0) <1455BA41-84AF-538B-379B-4B5E172318CB> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscifftw.5.dylib 0x100f39000 - 0x101029fef +libfftw3.3.dylib 6.4.0 (compatibility 6.0.0) <156D81DF-4A38-6D2B-F243-4945D174AFC2> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/thirdparty/libfftw3.3.dylib 0x101041000 - 0x1010a0fe7 +libscigraphics.5.dylib 9.2.0 (compatibility 9.0.0) <69401749-BDD0-DDE0-47AD-DD691AE42A87> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscigraphics.5.dylib 0x1010c2000 - 0x1010c3ff7 +libscihashtable.5.dylib 9.2.0 (compatibility 9.0.0) <0B4AB513-EA67-6352-8AF5-B47C2764DF1D> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscihashtable.5.dylib 0x1010c6000 - 0x101120fff +libscigui.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscigui.5.dylib 0x10113e000 - 0x10121afff +libscirenderer.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscirenderer.5.dylib 0x10130f000 - 0x101310fff +libscidoublylinkedlist.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscidoublylinkedlist.5.dylib 0x101313000 - 0x10133bff7 +libscigraphic_export.5.dylib 9.2.0 (compatibility 9.0.0) <5F06435C-0EAF-87A2-B5DD-825A5EC1BA79> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscigraphic_export.5.dylib 0x10134d000 - 0x101355fff +libsciconsole.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libsciconsole.5.dylib 0x10135c000 - 0x101366fff +libscihistory_manager.5.dylib 9.2.0 (compatibility 9.0.0) <0690903E-CF96-11AC-2D16-DCA9023C6DF3> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscihistory_manager.5.dylib 0x10136e000 - 0x101374ff7 +libsciaction_binding.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libsciaction_binding.5.dylib 0x10137b000 - 0x101385ff7 +libsciscinotes.5.dylib 9.2.0 (compatibility 9.0.0) <40C3FED3-4CB1-8121-956D-B4D7FF8EFCA6> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libsciscinotes.5.dylib 0x10138c000 - 0x101396fff +libsciui_data.5.dylib 9.2.0 (compatibility 9.0.0) <99B90086-E0D8-6B71-550D-C0DA2A688B24> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libsciui_data.5.dylib 0x10139c000 - 0x1013a1fff +libscijvm.5.dylib 9.2.0 (compatibility 9.0.0) <2E14C625-6E30-D0DE-8199-4EDC46920FFD> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscijvm.5.dylib 0x1013a5000 - 0x1014a0fe7 +libiconv.2.dylib 7.0.0 (compatibility 7.0.0) <0237C21D-E564-0E18-15EE-C99C81677CEB> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/thirdparty/libiconv.2.dylib 0x1014bc000 - 0x1014bcfff +libscidynamiclibrary.5.dylib 9.2.0 (compatibility 9.0.0) <712A07E8-F645-CAE1-AC48-CB8AD7AB292F> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscidynamiclibrary.5.dylib 0x1014bf000 - 0x1014c5ff7 +libscihistory_browser.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscihistory_browser.5.dylib 0x1014cc000 - 0x1014ccfff +libscicommons.5.dylib 9.2.0 (compatibility 9.0.0) <45DF136A-A544-8D65-3D98-F22498564D92> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscicommons.5.dylib 0x1014cf000 - 0x1014cffff +libscitclsci.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscitclsci.5.dylib 0x1014d2000 - 0x1014f4fff +libscifileio.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscifileio.5.dylib 0x1014fc000 - 0x101514fe7 +libscistring.5.dylib 9.2.0 (compatibility 9.0.0) <47BCB07B-12CA-36A2-E099-80CFC6485909> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscistring.5.dylib 0x1015d3000 - 0x1015d3fff +libpcreposix.0.dylib ??? (???) <6A449438-18FF-478C-2C52-65ED1E137F01> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/thirdparty/libpcreposix.0.dylib 0x1015d6000 - 0x101602fef +libpcre.0.dylib 1.1.0 (compatibility 1.0.0) <5BEFF2A8-81F1-8181-F957-314B54B6AC53> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/thirdparty/libpcre.0.dylib 0x101606000 - 0x10168dfff +libscielementary_functions.5.dylib 9.2.0 (compatibility 9.0.0) <9B957C53-2F93-EED0-4535-FCF96C1F1751> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscielementary_functions.5.dylib 0x101756000 - 0x101787fef +libsciarnoldi.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libsciarnoldi.5.dylib 0x10178b000 - 0x1017a9ff7 +libsciapi_scilab.5.dylib 9.2.0 (compatibility 9.0.0) <83961928-70B7-C7F9-3137-70FFE9F8966B> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libsciapi_scilab.5.dylib 0x1017b3000 - 0x1017b4fff +libscilibst.5.dylib 9.2.0 (compatibility 9.0.0) <4878AE49-0B77-0F36-D556-50DCF05D5285> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscilibst.5.dylib 0x1017b7000 - 0x1017b7ff7 +libscimalloc.5.dylib 9.2.0 (compatibility 9.0.0) <38383479-E4DF-DC3B-D172-5FE3B9A80CAB> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscimalloc.5.dylib 0x1017ba000 - 0x1017dfff7 +libscioutput_stream.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscioutput_stream.5.dylib 0x1018a6000 - 0x1018a7fff +libscihdf5-forceload.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscihdf5-forceload.5.dylib 0x1018ab000 - 0x101b17fe7 +libhdf5.6.dylib 7.3.0 (compatibility 7.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/thirdparty/libhdf5.6.dylib 0x101b5a000 - 0x102364fe7 +libBLAS.dylib 219.0.0 (compatibility 1.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/thirdparty/libBLAS.dylib 0x1023ad000 - 0x1027f0fef +libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/thirdparty/libLAPACK.dylib 0x10297d000 - 0x1029b8fff +libncurses.5.dylib 5.4.0 (compatibility 5.4.0) <6D209999-FB35-3134-E6D9-833125D3DE8A> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/thirdparty/libncurses.5.dylib 0x1029c8000 - 0x1029d9ff7 +libz.1.dylib 1.2.3 (compatibility 1.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/thirdparty/libz.1.dylib 0x1029de000 - 0x1029e3ff7 com.apple.JavaVM 13.5.0 (13.5.0) <974CB30D-AF11-1762-859E-097A988B5A7A> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM 0x1029eb000 - 0x102ad1fff +libgfortran.3.dylib 4.0.0 (compatibility 4.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/thirdparty/libgfortran.3.dylib 0x102b23000 - 0x102b36ff7 +libgcc_s.1.dylib ??? (???) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/thirdparty/libgcc_s.1.dylib 0x102b43000 - 0x102b48ff7 JavaLaunching ??? (???) <9E94B3DF-E0FB-BE09-1F88-E6334CA87466> /System/Library/PrivateFrameworks/JavaLaunching.framework/Versions/A/JavaLaunching 0x102b81000 - 0x102b82fef libThaiConverter.dylib 49.0.0 (compatibility 1.0.0) /System/Library/CoreServices/Encodings/libThaiConverter.dylib 0x102fc3000 - 0x102fe3ff7 libjava.jnilib ??? (???) /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries/libjava.jnilib 0x104086000 - 0x10408eff7 libverify.dylib 1.0 (1.0) <155BFCD9-BBA0-C03B-E411-1421586F595F> /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries/libverify.dylib 0x104094000 - 0x10409ffff JavaNativeFoundation ??? (???) /System/Library/Frameworks/JavaVM.framework/Versions/A/Frameworks/JavaNativeFoundation.framework/Versions/A/JavaNativeFoundation 0x1040aa000 - 0x1040b1fff libjvmlinkage.dylib ??? (???) <8F397A50-C3FF-DAE8-D0C2-86EBC59D7E7C> /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries/libjvmlinkage.dylib 0x7fff5fc00000 - 0x7fff5fc3bdef dyld 132.1 (???) <486E6C61-1197-CC7C-2197-82CE505102D7> /usr/lib/dyld 0x7fff80003000 - 0x7fff80080fef libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib 0x7fff80081000 - 0x7fff800a4fff com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL 0x7fff800df000 - 0x7fff801bcfff com.apple.vImage 4.1 (4.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 0x7fff80255000 - 0x7fff80951ff7 com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x7fff80952000 - 0x7fff80972ff7 com.apple.DirectoryService.Framework 3.6 (621.11) /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService 0x7fff81000000 - 0x7fff81015ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <1AE1FE8F-2204-4410-C94E-0E93B003BEDA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 0x7fff81016000 - 0x7fff81018fff libRadiance.dylib ??? (???) <76C1B129-6F25-E43C-1498-B1B88B37163B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib 0x7fff81019000 - 0x7fff81060ff7 com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 0x7fff810a0000 - 0x7fff810a3ff7 libCoreVMClient.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib 0x7fff810a4000 - 0x7fff810edfef libGLU.dylib ??? (???) <1C050088-4AB2-2BC2-62E6-C969F925A945> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x7fff81883000 - 0x7fff818d2ff7 com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <01B370FB-D524-F660-3826-E85B7F0D85CD> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer 0x7fff8211c000 - 0x7fff82144fff com.apple.DictionaryServices 1.1.2 (1.1.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices 0x7fff82e17000 - 0x7fff82e51fff libcups.2.dylib 2.8.0 (compatibility 2.0.0) <7982734A-B66B-44AA-DEEC-364D2C10009B> /usr/lib/libcups.2.dylib 0x7fff82f5f000 - 0x7fff83018fff libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib 0x7fff83019000 - 0x7fff83028fef com.apple.opengl 1.6.13 (1.6.13) <516098B3-4517-8A55-64BB-195CDAA5334D> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 0x7fff83029000 - 0x7fff832b2ff7 com.apple.security 6.1.2 (55002) <4419AFFC-DAE7-873E-6A7D-5C9A5A4497A6> /System/Library/Frameworks/Security.framework/Versions/A/Security 0x7fff83335000 - 0x7fff83335ff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib 0x7fff83336000 - 0x7fff833b4ff7 com.apple.CoreText 151.10 (???) <54961997-55D8-DC0F-2634-674E452D5A8E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText 0x7fff833b5000 - 0x7fff83441fef SecurityFoundation ??? (???) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation 0x7fff834b4000 - 0x7fff83539ff7 com.apple.print.framework.PrintCore 6.3 (312.7) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 0x7fff8353a000 - 0x7fff83545ff7 com.apple.speech.recognition.framework 3.11.1 (3.11.1) <3D65E89B-FFC6-4AAF-D5CC-104F967C8131> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition 0x7fff837f5000 - 0x7fff83885fff com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 0x7fff83af9000 - 0x7fff83b3afef com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 0x7fff83b3b000 - 0x7fff83cf9ff7 com.apple.ImageIO.framework 3.0.4 (3.0.4) <6212CA66-7B18-2AED-6AA8-45185F5D9A03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO 0x7fff83cfa000 - 0x7fff83e19fe7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <14115D29-432B-CF02-6B24-A60CC533A09E> /usr/lib/libcrypto.0.9.8.dylib 0x7fff83e1a000 - 0x7fff83e1aff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x7fff83ef4000 - 0x7fff83f0afe7 com.apple.MultitouchSupport.framework 207.11 (207.11) <8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport 0x7fff83f16000 - 0x7fff84030fef libGLProgrammability.dylib ??? (???) <8A4B86E3-0FA7-8684-2EF2-C5F8079428DB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib 0x7fff84031000 - 0x7fff840b0fe7 com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x7fff84129000 - 0x7fff84267fff com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x7fff84329000 - 0x7fff8433ffef libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib 0x7fff84340000 - 0x7fff84345fff libGIF.dylib ??? (???) <95443F88-7D4C-1DEE-A323-A70F7A1B4B0F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x7fff84346000 - 0x7fff8434aff7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib 0x7fff8434b000 - 0x7fff84509fff libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <4274FC73-A257-3A56-4293-5968F3428854> /usr/lib/libicucore.A.dylib 0x7fff8480e000 - 0x7fff84b0cfff com.apple.HIToolbox 1.6.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 0x7fff84b0e000 - 0x7fff84b13fff libGFXShared.dylib ??? (???) <1D0D3531-9561-632C-D620-1A8652BEF5BC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib 0x7fff84b14000 - 0x7fff84bd1fff com.apple.CoreServices.OSServices 359 (359) <8F509D8D-4C94-9A1C-3A87-5B775D9F6075> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 0x7fff84bd2000 - 0x7fff84bd2ff7 com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib 0x7fff84bf8000 - 0x7fff84c07fff com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS 0x7fff84c08000 - 0x7fff84c50ff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib 0x7fff84c51000 - 0x7fff84c72fff libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <9F322F47-0584-CB7D-5B73-9EBD670851CD> /usr/lib/libresolv.9.dylib 0x7fff84cf0000 - 0x7fff84d43ff7 com.apple.HIServices 1.8.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 0x7fff84d44000 - 0x7fff84e79fff com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x7fff84e7a000 - 0x7fff84f30ff7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib 0x7fff84f31000 - 0x7fff84f38fff com.apple.OpenDirectory 10.6 (10.6) <4200CFB0-DBA1-62B8-7C7C-91446D89551F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory 0x7fff84f39000 - 0x7fff850b0fe7 com.apple.CoreFoundation 6.6.5 (550.43) <31A1C118-AD96-0A11-8BDF-BD55B9940EDC> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x7fff85169000 - 0x7fff85b63ff7 com.apple.AppKit 6.6.8 (1038.36) <4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x7fff85baa000 - 0x7fff85baaff7 com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x7fff85bab000 - 0x7fff85bdcfff libGLImage.dylib ??? (???) <7F102A07-E4FB-9F52-B2F6-4E2D2383CA13> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 0x7fff85bdd000 - 0x7fff85d9efef libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib 0x7fff85e2d000 - 0x7fff85eeefef com.apple.ColorSync 4.6.6 (4.6.6) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync 0x7fff85f33000 - 0x7fff85f88ff7 com.apple.framework.familycontrols 2.0.2 (2020) /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls 0x7fff860fb000 - 0x7fff8613cfff com.apple.SystemConfiguration 1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 0x7fff8613d000 - 0x7fff86162ff7 com.apple.CoreVideo 1.6.2 (45.6) /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0x7fff86163000 - 0x7fff861fdfe7 com.apple.ApplicationServices.ATS 275.16 (???) <4B70A2FC-1902-5F27-5C3B-5C78C283C6EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x7fff861fe000 - 0x7fff861ffff7 com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent 0x7fff8620a000 - 0x7fff86254ff7 com.apple.Metadata 10.6.3 (507.15) <2EF19055-D7AE-4D77-E589-7B71B0BC1E59> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata 0x7fff862d2000 - 0x7fff86554fe7 com.apple.Foundation 6.6.7 (751.62) <6F2A5BBF-6990-D561-2928-AD61E94036D9> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x7fff86555000 - 0x7fff868f2fe7 com.apple.QuartzCore 1.6.3 (227.37) <16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x7fff868f3000 - 0x7fff8691eff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <8AB4CA9E-435A-33DA-7041-904BA7FA11D5> /usr/lib/libxslt.1.dylib 0x7fff86adc000 - 0x7fff86addff7 com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <53299948-2554-0F8F-7501-04B34E49F6CF> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x7fff86ade000 - 0x7fff86ae4ff7 com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x7fff86ae5000 - 0x7fff86ae6fff liblangid.dylib ??? (???) /usr/lib/liblangid.dylib 0x7fff86ec5000 - 0x7fff86f14fef libTIFF.dylib ??? (???) <5DE9F066-9B64-CBE4-976A-CC7B8DD3C31A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 0x7fff86f15000 - 0x7fff86f50fff com.apple.AE 496.5 (496.5) <208DF391-4DE6-81ED-C697-14A2930D1BC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE 0x7fff8737d000 - 0x7fff8741dfff com.apple.LaunchServices 362.3 (362.3) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 0x7fff8742c000 - 0x7fff874e1fe7 com.apple.ink.framework 1.3.3 (107) <8C36373C-5473-3A6A-4972-BC29D504250F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink 0x7fff8756b000 - 0x7fff87584fff com.apple.CFOpenDirectory 10.6 (10.6) /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory 0x7fff8763b000 - 0x7fff8763bff7 com.apple.CoreServices 44 (44) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x7fff87960000 - 0x7fff87a45fef com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 0x7fff87b3e000 - 0x7fff87b52ff7 com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x7fff87b53000 - 0x7fff87c6afef libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <1B27AFDD-DF87-2009-170E-C129E1572E8B> /usr/lib/libxml2.2.dylib 0x7fff87c6b000 - 0x7fff87ccbfe7 com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x7fff882e3000 - 0x7fff88300ff7 libPng.dylib ??? (???) <4815A8F2-24A0-E783-8A5A-7B4959F562D7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 0x7fff88509000 - 0x7fff8851dfff libGL.dylib ??? (???) <2ECE3B0F-39E1-3938-BF27-7205C6D0358B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x7fff8852e000 - 0x7fff8857afff libauto.dylib ??? (???) /usr/lib/libauto.dylib 0x7fff885f5000 - 0x7fff88607fe7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib 0x7fff8861c000 - 0x7fff88622ff7 com.apple.CommerceCore 1.0 (9.1) <3691E9BA-BCF4-98C7-EFEC-78DA6825004E> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore 0x7fff8872e000 - 0x7fff8872eff7 com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 0x7fff88bb4000 - 0x7fff88bc2ff7 libkxld.dylib ??? (???) <8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib 0x7fff88bc3000 - 0x7fff88c84fff libFontParser.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib 0x7fff88de6000 - 0x7fff88e96fff edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 0x7fff88efd000 - 0x7fff88fd1fe7 com.apple.CFNetwork 454.12.4 (454.12.4) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x7fff88fd2000 - 0x7fff8903cfe7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 0x7fff89069000 - 0x7fff8939dfef com.apple.CoreServices.CarbonCore 861.39 (861.39) <1386A24D-DD15-5903-057E-4A224FAF580B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 0x7fff893e4000 - 0x7fff8940bff7 libJPEG.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x7fff8940c000 - 0x7fff89412ff7 IOSurface ??? (???) /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface 0x7fffffe00000 - 0x7fffffe01fff libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib Model: MacBook5,1, BootROM MB51.0073.B02, 2 processors, Intel Core 2 Duo, 2 GHz, 2 GB, SMC 1.32f6 Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB Memory Module: global_name AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.131.42.4) Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports Network Service: AirPort, AirPort, en1 Serial ATA Device: FUJITSU MHZ2160BH FFS G1, 149.05 GB Serial ATA Device: OPTIARC DVD RW AD-5960S, 4.1 GB USB Device: RIM Composite Device, 0x0fca, 0x8004, 0x24100000 / 3 USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8507, 0x24400000 / 2 USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0236, 0x04600000 / 3 USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x04500000 / 2 USB Device: BCM2045B2, 0x0a5c (Broadcom Corp.), 0x4500, 0x06100000 / 2 USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8213, 0x06110000 / 4 Please check this and report to me Best Regards From kirill.kirillov at gmail.com Sun Jul 17 20:32:13 2011 From: kirill.kirillov at gmail.com (Kirill Kirillov) Date: Sun, 17 Jul 2011 22:32:13 +0400 Subject: [scilab-Users] loader.sce in the contrib folder In-Reply-To: <4E228EE2.1090806@axelspace.com> References: <4E228EE2.1090806@axelspace.com> Message-ID: <1310927533.2419.2.camel@white.faith> ? ???, 17/07/2011 ? 16:27 +0900, Iai Masafumi ax ?????: > Why I do not see "contrib/loader.sce" on Ubuntu? It is due to http://bugzilla.scilab.org/show_bug.cgi?id=9545 > Any suggestion would be appreciated. Use attached file as a workaround (place it to contrib folder). -- Kirill Kirillov <>< -------------- next part -------------- A non-text attachment was scrubbed... Name: loader.sce Type: text/x-sce Size: 118 bytes Desc: not available URL: From iai at axelspace.com Mon Jul 18 02:36:31 2011 From: iai at axelspace.com (Iai Masafumi ax) Date: Mon, 18 Jul 2011 09:36:31 +0900 Subject: [scilab-Users] loader.sce in the contrib folder In-Reply-To: <1310927533.2419.2.camel@white.faith> References: <4E228EE2.1090806@axelspace.com> <1310927533.2419.2.camel@white.faith> Message-ID: <4E23800F.7030209@axelspace.com> Thank you, Kirill! (2011/07/18 3:32), Kirill Kirillov wrote: > ? ???, 17/07/2011 ? 16:27 +0900, Iai Masafumi ax ?????: >> Why I do not see "contrib/loader.sce" on Ubuntu? > It is due to http://bugzilla.scilab.org/show_bug.cgi?id=9545 > >> Any suggestion would be appreciated. > Use attached file as a workaround (place it to contrib folder). > From mathieu.dubois at limsi.fr Mon Jul 18 08:47:57 2011 From: mathieu.dubois at limsi.fr (Mathieu Dubois) Date: Mon, 18 Jul 2011 08:47:57 +0200 Subject: [scilab-Users] Problem with opening the program In-Reply-To: References: Message-ID: <4E23D71D.6050505@limsi.fr> Hi, There was a lot of messages earlier this month and/or in june reporting problems under Mac OS. You should try to search in the archive. Mathieu Le 15/07/2011 20:25, Kanticha Korsesthakarn a ?crit : > I downloaded this program > After installed the program then another window pop up on the screen > > Scilab quit unexpectedly > > Here is Comments > > Process: scilab-bin [1601] > Path: /Applications/scilab-5.3.2.app/Contents/MacOS/bin/scilab > Identifier: org.scilab.modules.jvm.Scilab > Version: ??? (???) > Code Type: X86-64 (Native) > Parent Process: sh [1564] > > Date/Time: 2011-07-16 01:22:08.095 +0700 > OS Version: Mac OS X 10.6.8 (10K540) > Report Version: 6 > > Interval Since Last Report: 35061 sec > Crashes Since Last Report: 6 > Per-App Interval Since Last Report: 38 sec > Per-App Crashes Since Last Report: 6 > Anonymous UUID: FDA7E09A-7FC6-4948-AA35-44C551935967 > > Exception Type: EXC_BAD_ACCESS (SIGSEGV) > Exception Codes: KERN_INVALID_ADDRESS at 0xfffffffffffffff8 > Crashed Thread: 1 > > Thread 0: Dispatch queue: com.apple.main-thread > 0 libSystem.B.dylib 0x00007fff85bddd7a mach_msg_trap + 10 > 1 libSystem.B.dylib 0x00007fff85bde3ed mach_msg + 59 > 2 com.apple.CoreFoundation 0x00007fff84f85932 __CFRunLoopRun + 1698 > 3 com.apple.CoreFoundation 0x00007fff84f84dbf CFRunLoopRunSpecific + 575 > 4 com.apple.CoreFoundation 0x00007fff84f84b46 CFRunLoopRun + 70 > 5 libscishell.5.dylib 0x0000000100008fab initMacOSXEnv + 395 > 6 scilab-bin 0x0000000100002bad 0x100000000 + 11181 > 7 scilab-bin 0x0000000100002994 0x100000000 + 10644 > > Thread 1 Crashed: > 0 libSystem.B.dylib 0x00007fff85c281b0 _longjmp + 48 > > Thread 2: Dispatch queue: com.apple.libdispatch-manager > 0 libSystem.B.dylib 0x00007fff85bf6c0a kevent + 10 > 1 libSystem.B.dylib 0x00007fff85bf8add _dispatch_mgr_invoke + 154 > 2 libSystem.B.dylib 0x00007fff85bf87b4 _dispatch_queue_invoke + 185 > 3 libSystem.B.dylib 0x00007fff85bf82de _dispatch_worker_thread2 + 252 > 4 libSystem.B.dylib 0x00007fff85bf7c08 _pthread_wqthread + 353 > 5 libSystem.B.dylib 0x00007fff85bf7aa5 start_wqthread + 13 > > Thread 3: > 0 libSystem.B.dylib 0x00007fff85bf7a2a __workq_kernreturn + 10 > 1 libSystem.B.dylib 0x00007fff85bf7e3c _pthread_wqthread + 917 > 2 libSystem.B.dylib 0x00007fff85bf7aa5 start_wqthread + 13 > > Thread 1 crashed with X86 Thread State (64-bit): > rax: 0x0000000000000001 rbx: 0x0000000000000000 rcx: 0x00007fff85c3e1da rdx: 0x0000000000000000 > rdi: 0x00000001000d0b00 rsi: 0x0000000000000001 rbp: 0x0000000000000000 rsp: 0x0000000000000000 > r8: 0x0000000102b53a00 r9: 0x0000000000000016 r10: 0x00007fff85c280fa r11: 0x0000000000000246 > r12: 0x0000000000000000 r13: 0x0000000000000000 r14: 0x0000000000000000 r15: 0x0000000000000000 > rip: 0x00007fff85c281b0 rfl: 0x0000000000010202 cr2: 0xfffffffffffffff8 > > Binary Images: > 0x100000000 - 0x100002ff7 +scilab-bin ??? (???)<59BC8905-1C8F-4C1C-3C79-A9235991400B> /Applications/scilab-5.3.2.app/Contents/MacOS/bin/scilab-bin > 0x100005000 - 0x10000dfef +libscishell.5.dylib 9.2.0 (compatibility 9.0.0)<05CCD93D-3059-79A3-88FF-E31BF78ABF28> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscishell.5.dylib > 0x100012000 - 0x10008aff7 +libscicore.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscicore.5.dylib > 0x10019e000 - 0x1001a3fff +libscicompletion.5.dylib 9.2.0 (compatibility 9.0.0)<5F369FCA-9A45-EA2B-9C35-38C002C3F3EE> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscicompletion.5.dylib > 0x1001a7000 - 0x1001a9fff +libscilocalization.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscilocalization.5.dylib > 0x1001b2000 - 0x1001c4fff +libsciio.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libsciio.5.dylib > 0x100283000 - 0x100285ff7 +libscilab.0.dylib ??? (???)<3543EE40-300B-5E48-2877-2C31EA1A5840> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscilab.0.dylib > 0x100287000 - 0x10028bfff +libsciparameters.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libsciparameters.5.dylib > 0x10028e000 - 0x100290ff7 +libscicall_scilab.5.dylib 9.2.0 (compatibility 9.0.0)<67775839-4F23-81B5-3731-7B56E4695E4B> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscicall_scilab.5.dylib > 0x100293000 - 0x1002a2ff7 +libscidouble.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscidouble.5.dylib > 0x10035f000 - 0x100366fff +libsciboolean.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libsciboolean.5.dylib > 0x100423000 - 0x100424fff +libsciintersci.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libsciintersci.5.dylib > 0x100427000 - 0x10042efff +libintl.8.dylib 9.2.0 (compatibility 9.0.0)<2A31280A-EDB4-0645-E839-85DD47F7A422> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/thirdparty/libintl.8.dylib > 0x100433000 - 0x100438ff7 +libscispecial_functions.5.dylib 9.2.0 (compatibility 9.0.0)<63EFD4E0-10FB-DEC9-B090-3C230E6FE281> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscispecial_functions.5.dylib > 0x1004f5000 - 0x10050cfff +libscistatistics.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscistatistics.5.dylib > 0x1005ca000 - 0x1005ccfff +libscitime.5.dylib 9.2.0 (compatibility 9.0.0)<0A228956-C0A1-69BF-4118-BF955E0C23C1> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscitime.5.dylib > 0x1005cf000 - 0x1005cffff +libsciwindows_tools.5.dylib 9.2.0 (compatibility 9.0.0)<1497BEE2-A89C-179F-F506-DAFDCDAF04F2> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libsciwindows_tools.5.dylib > 0x1005d2000 - 0x10061aff7 +libscisparse.5.dylib 9.2.0 (compatibility 9.0.0)<18DFA772-C86A-1CA3-8E07-8CBD000B9DEF> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscisparse.5.dylib > 0x1006db000 - 0x100705ff7 +libscipolynomials.5.dylib 9.2.0 (compatibility 9.0.0)<6F0062FA-EEDD-1098-6DE0-EA501234759B> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscipolynomials.5.dylib > 0x1007c5000 - 0x100890ff7 +libscicacsd.5.dylib 9.2.0 (compatibility 9.0.0)<7493EC79-E8AD-135A-B066-85754C37B6F1> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscicacsd.5.dylib > 0x100953000 - 0x10095bfff +libmx.5.dylib 9.2.0 (compatibility 9.0.0)<47FC6362-ACB0-B9AD-B1DD-EBFA2EABABA6> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libmx.5.dylib > 0x100962000 - 0x10096afff +libmat.5.dylib 9.2.0 (compatibility 9.0.0)<79D07DB1-365B-CD56-5162-1E83B28908A9> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libmat.5.dylib > 0x100971000 - 0x1009d3fff +libscidifferential_equations.5.dylib 9.2.0 (compatibility 9.0.0)<3BBDA419-EEAE-B0DF-B58D-ABA2EE2DB355> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscidifferential_equations.5.dylib > 0x100a9d000 - 0x100aa5fff +libmex.5.dylib 9.2.0 (compatibility 9.0.0)<87C7E529-5580-83A0-3402-55E81C679E7D> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libmex.5.dylib > 0x100aac000 - 0x100abaff7 +libscidata_structures.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscidata_structures.5.dylib > 0x100b78000 - 0x100ba4fff +libsciinteger.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libsciinteger.5.dylib > 0x100c63000 - 0x100c87ff7 +libscilinear_algebra.5.dylib 9.2.0 (compatibility 9.0.0)<0AE0668C-81C6-F3FF-E417-7F65D26B3A44> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscilinear_algebra.5.dylib > 0x100d47000 - 0x100d4dff7 +libscidynamic_link.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscidynamic_link.5.dylib > 0x100e53000 - 0x100e59fff +libscifunctions.5.dylib 9.2.0 (compatibility 9.0.0)<78E8274E-7544-59AA-6166-DAFE112CD5FD> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscifunctions.5.dylib > 0x100f17000 - 0x100f25ff7 +libscihdf5.5.dylib 9.2.0 (compatibility 9.0.0)<38AED9CA-4CCA-841F-267D-32C28F241E95> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscihdf5.5.dylib > 0x100f2e000 - 0x100f2efff +libscipvm.5.dylib 9.2.0 (compatibility 9.0.0)<3F8D4FBA-FB8A-9DE3-15DF-201E822217CA> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscipvm.5.dylib > 0x100f31000 - 0x100f35fff +libscifftw.5.dylib 9.2.0 (compatibility 9.0.0)<1455BA41-84AF-538B-379B-4B5E172318CB> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscifftw.5.dylib > 0x100f39000 - 0x101029fef +libfftw3.3.dylib 6.4.0 (compatibility 6.0.0)<156D81DF-4A38-6D2B-F243-4945D174AFC2> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/thirdparty/libfftw3.3.dylib > 0x101041000 - 0x1010a0fe7 +libscigraphics.5.dylib 9.2.0 (compatibility 9.0.0)<69401749-BDD0-DDE0-47AD-DD691AE42A87> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscigraphics.5.dylib > 0x1010c2000 - 0x1010c3ff7 +libscihashtable.5.dylib 9.2.0 (compatibility 9.0.0)<0B4AB513-EA67-6352-8AF5-B47C2764DF1D> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscihashtable.5.dylib > 0x1010c6000 - 0x101120fff +libscigui.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscigui.5.dylib > 0x10113e000 - 0x10121afff +libscirenderer.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscirenderer.5.dylib > 0x10130f000 - 0x101310fff +libscidoublylinkedlist.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscidoublylinkedlist.5.dylib > 0x101313000 - 0x10133bff7 +libscigraphic_export.5.dylib 9.2.0 (compatibility 9.0.0)<5F06435C-0EAF-87A2-B5DD-825A5EC1BA79> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscigraphic_export.5.dylib > 0x10134d000 - 0x101355fff +libsciconsole.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libsciconsole.5.dylib > 0x10135c000 - 0x101366fff +libscihistory_manager.5.dylib 9.2.0 (compatibility 9.0.0)<0690903E-CF96-11AC-2D16-DCA9023C6DF3> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscihistory_manager.5.dylib > 0x10136e000 - 0x101374ff7 +libsciaction_binding.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libsciaction_binding.5.dylib > 0x10137b000 - 0x101385ff7 +libsciscinotes.5.dylib 9.2.0 (compatibility 9.0.0)<40C3FED3-4CB1-8121-956D-B4D7FF8EFCA6> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libsciscinotes.5.dylib > 0x10138c000 - 0x101396fff +libsciui_data.5.dylib 9.2.0 (compatibility 9.0.0)<99B90086-E0D8-6B71-550D-C0DA2A688B24> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libsciui_data.5.dylib > 0x10139c000 - 0x1013a1fff +libscijvm.5.dylib 9.2.0 (compatibility 9.0.0)<2E14C625-6E30-D0DE-8199-4EDC46920FFD> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscijvm.5.dylib > 0x1013a5000 - 0x1014a0fe7 +libiconv.2.dylib 7.0.0 (compatibility 7.0.0)<0237C21D-E564-0E18-15EE-C99C81677CEB> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/thirdparty/libiconv.2.dylib > 0x1014bc000 - 0x1014bcfff +libscidynamiclibrary.5.dylib 9.2.0 (compatibility 9.0.0)<712A07E8-F645-CAE1-AC48-CB8AD7AB292F> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscidynamiclibrary.5.dylib > 0x1014bf000 - 0x1014c5ff7 +libscihistory_browser.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscihistory_browser.5.dylib > 0x1014cc000 - 0x1014ccfff +libscicommons.5.dylib 9.2.0 (compatibility 9.0.0)<45DF136A-A544-8D65-3D98-F22498564D92> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscicommons.5.dylib > 0x1014cf000 - 0x1014cffff +libscitclsci.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscitclsci.5.dylib > 0x1014d2000 - 0x1014f4fff +libscifileio.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscifileio.5.dylib > 0x1014fc000 - 0x101514fe7 +libscistring.5.dylib 9.2.0 (compatibility 9.0.0)<47BCB07B-12CA-36A2-E099-80CFC6485909> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscistring.5.dylib > 0x1015d3000 - 0x1015d3fff +libpcreposix.0.dylib ??? (???)<6A449438-18FF-478C-2C52-65ED1E137F01> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/thirdparty/libpcreposix.0.dylib > 0x1015d6000 - 0x101602fef +libpcre.0.dylib 1.1.0 (compatibility 1.0.0)<5BEFF2A8-81F1-8181-F957-314B54B6AC53> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/thirdparty/libpcre.0.dylib > 0x101606000 - 0x10168dfff +libscielementary_functions.5.dylib 9.2.0 (compatibility 9.0.0)<9B957C53-2F93-EED0-4535-FCF96C1F1751> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscielementary_functions.5.dylib > 0x101756000 - 0x101787fef +libsciarnoldi.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libsciarnoldi.5.dylib > 0x10178b000 - 0x1017a9ff7 +libsciapi_scilab.5.dylib 9.2.0 (compatibility 9.0.0)<83961928-70B7-C7F9-3137-70FFE9F8966B> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libsciapi_scilab.5.dylib > 0x1017b3000 - 0x1017b4fff +libscilibst.5.dylib 9.2.0 (compatibility 9.0.0)<4878AE49-0B77-0F36-D556-50DCF05D5285> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscilibst.5.dylib > 0x1017b7000 - 0x1017b7ff7 +libscimalloc.5.dylib 9.2.0 (compatibility 9.0.0)<38383479-E4DF-DC3B-D172-5FE3B9A80CAB> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscimalloc.5.dylib > 0x1017ba000 - 0x1017dfff7 +libscioutput_stream.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscioutput_stream.5.dylib > 0x1018a6000 - 0x1018a7fff +libscihdf5-forceload.5.dylib 9.2.0 (compatibility 9.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/scilab/libscihdf5-forceload.5.dylib > 0x1018ab000 - 0x101b17fe7 +libhdf5.6.dylib 7.3.0 (compatibility 7.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/thirdparty/libhdf5.6.dylib > 0x101b5a000 - 0x102364fe7 +libBLAS.dylib 219.0.0 (compatibility 1.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/thirdparty/libBLAS.dylib > 0x1023ad000 - 0x1027f0fef +libLAPACK.dylib 219.0.0 (compatibility 1.0.0)<0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/thirdparty/libLAPACK.dylib > 0x10297d000 - 0x1029b8fff +libncurses.5.dylib 5.4.0 (compatibility 5.4.0)<6D209999-FB35-3134-E6D9-833125D3DE8A> /Applications/scilab-5.3.2.app/Contents/MacOS/lib/thirdparty/libncurses.5.dylib > 0x1029c8000 - 0x1029d9ff7 +libz.1.dylib 1.2.3 (compatibility 1.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/thirdparty/libz.1.dylib > 0x1029de000 - 0x1029e3ff7 com.apple.JavaVM 13.5.0 (13.5.0)<974CB30D-AF11-1762-859E-097A988B5A7A> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM > 0x1029eb000 - 0x102ad1fff +libgfortran.3.dylib 4.0.0 (compatibility 4.0.0) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/thirdparty/libgfortran.3.dylib > 0x102b23000 - 0x102b36ff7 +libgcc_s.1.dylib ??? (???) /Applications/scilab-5.3.2.app/Contents/MacOS/lib/thirdparty/libgcc_s.1.dylib > 0x102b43000 - 0x102b48ff7 JavaLaunching ??? (???)<9E94B3DF-E0FB-BE09-1F88-E6334CA87466> /System/Library/PrivateFrameworks/JavaLaunching.framework/Versions/A/JavaLaunching > 0x102b81000 - 0x102b82fef libThaiConverter.dylib 49.0.0 (compatibility 1.0.0) /System/Library/CoreServices/Encodings/libThaiConverter.dylib > 0x102fc3000 - 0x102fe3ff7 libjava.jnilib ??? (???) /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries/libjava.jnilib > 0x104086000 - 0x10408eff7 libverify.dylib 1.0 (1.0)<155BFCD9-BBA0-C03B-E411-1421586F595F> /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries/libverify.dylib > 0x104094000 - 0x10409ffff JavaNativeFoundation ??? (???) /System/Library/Frameworks/JavaVM.framework/Versions/A/Frameworks/JavaNativeFoundation.framework/Versions/A/JavaNativeFoundation > 0x1040aa000 - 0x1040b1fff libjvmlinkage.dylib ??? (???)<8F397A50-C3FF-DAE8-D0C2-86EBC59D7E7C> /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries/libjvmlinkage.dylib > 0x7fff5fc00000 - 0x7fff5fc3bdef dyld 132.1 (???)<486E6C61-1197-CC7C-2197-82CE505102D7> /usr/lib/dyld > 0x7fff80003000 - 0x7fff80080fef libstdc++.6.dylib 7.9.0 (compatibility 7.0.0)<35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib > 0x7fff80081000 - 0x7fff800a4fff com.apple.opencl 12.3.6 (12.3.6)<42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL > 0x7fff800df000 - 0x7fff801bcfff com.apple.vImage 4.1 (4.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage > 0x7fff80255000 - 0x7fff80951ff7 com.apple.CoreGraphics 1.545.0 (???)<58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics > 0x7fff80952000 - 0x7fff80972ff7 com.apple.DirectoryService.Framework 3.6 (621.11) /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService > 0x7fff81000000 - 0x7fff81015ff7 com.apple.LangAnalysis 1.6.6 (1.6.6)<1AE1FE8F-2204-4410-C94E-0E93B003BEDA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis > 0x7fff81016000 - 0x7fff81018fff libRadiance.dylib ??? (???)<76C1B129-6F25-E43C-1498-B1B88B37163B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib > 0x7fff81019000 - 0x7fff81060ff7 com.apple.coreui 2 (114)<923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI > 0x7fff810a0000 - 0x7fff810a3ff7 libCoreVMClient.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib > 0x7fff810a4000 - 0x7fff810edfef libGLU.dylib ??? (???)<1C050088-4AB2-2BC2-62E6-C969F925A945> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib > 0x7fff81883000 - 0x7fff818d2ff7 com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1)<01B370FB-D524-F660-3826-E85B7F0D85CD> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer > 0x7fff8211c000 - 0x7fff82144fff com.apple.DictionaryServices 1.1.2 (1.1.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices > 0x7fff82e17000 - 0x7fff82e51fff libcups.2.dylib 2.8.0 (compatibility 2.0.0)<7982734A-B66B-44AA-DEEC-364D2C10009B> /usr/lib/libcups.2.dylib > 0x7fff82f5f000 - 0x7fff83018fff libsqlite3.dylib 9.6.0 (compatibility 9.0.0)<2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib > 0x7fff83019000 - 0x7fff83028fef com.apple.opengl 1.6.13 (1.6.13)<516098B3-4517-8A55-64BB-195CDAA5334D> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL > 0x7fff83029000 - 0x7fff832b2ff7 com.apple.security 6.1.2 (55002)<4419AFFC-DAE7-873E-6A7D-5C9A5A4497A6> /System/Library/Frameworks/Security.framework/Versions/A/Security > 0x7fff83335000 - 0x7fff83335ff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6)<4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib > 0x7fff83336000 - 0x7fff833b4ff7 com.apple.CoreText 151.10 (???)<54961997-55D8-DC0F-2634-674E452D5A8E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText > 0x7fff833b5000 - 0x7fff83441fef SecurityFoundation ??? (???) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation > 0x7fff834b4000 - 0x7fff83539ff7 com.apple.print.framework.PrintCore 6.3 (312.7) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore > 0x7fff8353a000 - 0x7fff83545ff7 com.apple.speech.recognition.framework 3.11.1 (3.11.1)<3D65E89B-FFC6-4AAF-D5CC-104F967C8131> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition > 0x7fff837f5000 - 0x7fff83885fff com.apple.SearchKit 1.3.0 (1.3.0)<4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit > 0x7fff83af9000 - 0x7fff83b3afef com.apple.QD 3.36 (???)<5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD > 0x7fff83b3b000 - 0x7fff83cf9ff7 com.apple.ImageIO.framework 3.0.4 (3.0.4)<6212CA66-7B18-2AED-6AA8-45185F5D9A03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO > 0x7fff83cfa000 - 0x7fff83e19fe7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8)<14115D29-432B-CF02-6B24-A60CC533A09E> /usr/lib/libcrypto.0.9.8.dylib > 0x7fff83e1a000 - 0x7fff83e1aff7 com.apple.Accelerate 1.6 (Accelerate 1.6)<15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate > 0x7fff83ef4000 - 0x7fff83f0afe7 com.apple.MultitouchSupport.framework 207.11 (207.11)<8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport > 0x7fff83f16000 - 0x7fff84030fef libGLProgrammability.dylib ??? (???)<8A4B86E3-0FA7-8684-2EF2-C5F8079428DB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib > 0x7fff84031000 - 0x7fff840b0fe7 com.apple.audio.CoreAudio 3.2.6 (3.2.6)<79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio > 0x7fff84129000 - 0x7fff84267fff com.apple.CoreData 102.1 (251)<9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData > 0x7fff84329000 - 0x7fff8433ffef libbsm.0.dylib ??? (???)<42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib > 0x7fff84340000 - 0x7fff84345fff libGIF.dylib ??? (???)<95443F88-7D4C-1DEE-A323-A70F7A1B4B0F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib > 0x7fff84346000 - 0x7fff8434aff7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0)<95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib > 0x7fff8434b000 - 0x7fff84509fff libicucore.A.dylib 40.0.0 (compatibility 1.0.0)<4274FC73-A257-3A56-4293-5968F3428854> /usr/lib/libicucore.A.dylib > 0x7fff8480e000 - 0x7fff84b0cfff com.apple.HIToolbox 1.6.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox > 0x7fff84b0e000 - 0x7fff84b13fff libGFXShared.dylib ??? (???)<1D0D3531-9561-632C-D620-1A8652BEF5BC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib > 0x7fff84b14000 - 0x7fff84bd1fff com.apple.CoreServices.OSServices 359 (359)<8F509D8D-4C94-9A1C-3A87-5B775D9F6075> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices > 0x7fff84bd2000 - 0x7fff84bd2ff7 com.apple.vecLib 3.6 (vecLib 3.6)<96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib > 0x7fff84bf8000 - 0x7fff84c07fff com.apple.NetFS 3.2.2 (3.2.2)<7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS > 0x7fff84c08000 - 0x7fff84c50ff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0)<98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib > 0x7fff84c51000 - 0x7fff84c72fff libresolv.9.dylib 41.0.0 (compatibility 1.0.0)<9F322F47-0584-CB7D-5B73-9EBD670851CD> /usr/lib/libresolv.9.dylib > 0x7fff84cf0000 - 0x7fff84d43ff7 com.apple.HIServices 1.8.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices > 0x7fff84d44000 - 0x7fff84e79fff com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox > 0x7fff84e7a000 - 0x7fff84f30ff7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0)<03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib > 0x7fff84f31000 - 0x7fff84f38fff com.apple.OpenDirectory 10.6 (10.6)<4200CFB0-DBA1-62B8-7C7C-91446D89551F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory > 0x7fff84f39000 - 0x7fff850b0fe7 com.apple.CoreFoundation 6.6.5 (550.43)<31A1C118-AD96-0A11-8BDF-BD55B9940EDC> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation > 0x7fff85169000 - 0x7fff85b63ff7 com.apple.AppKit 6.6.8 (1038.36)<4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit > 0x7fff85baa000 - 0x7fff85baaff7 com.apple.ApplicationServices 38 (38)<10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices > 0x7fff85bab000 - 0x7fff85bdcfff libGLImage.dylib ??? (???)<7F102A07-E4FB-9F52-B2F6-4E2D2383CA13> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib > 0x7fff85bdd000 - 0x7fff85d9efef libSystem.B.dylib 125.2.11 (compatibility 1.0.0)<9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib > 0x7fff85e2d000 - 0x7fff85eeefef com.apple.ColorSync 4.6.6 (4.6.6) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync > 0x7fff85f33000 - 0x7fff85f88ff7 com.apple.framework.familycontrols 2.0.2 (2020) /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls > 0x7fff860fb000 - 0x7fff8613cfff com.apple.SystemConfiguration 1.10.8 (1.10.2)<78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration > 0x7fff8613d000 - 0x7fff86162ff7 com.apple.CoreVideo 1.6.2 (45.6) /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo > 0x7fff86163000 - 0x7fff861fdfe7 com.apple.ApplicationServices.ATS 275.16 (???)<4B70A2FC-1902-5F27-5C3B-5C78C283C6EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS > 0x7fff861fe000 - 0x7fff861ffff7 com.apple.TrustEvaluationAgent 1.1 (1)<5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent > 0x7fff8620a000 - 0x7fff86254ff7 com.apple.Metadata 10.6.3 (507.15)<2EF19055-D7AE-4D77-E589-7B71B0BC1E59> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata > 0x7fff862d2000 - 0x7fff86554fe7 com.apple.Foundation 6.6.7 (751.62)<6F2A5BBF-6990-D561-2928-AD61E94036D9> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation > 0x7fff86555000 - 0x7fff868f2fe7 com.apple.QuartzCore 1.6.3 (227.37)<16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore > 0x7fff868f3000 - 0x7fff8691eff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0)<8AB4CA9E-435A-33DA-7041-904BA7FA11D5> /usr/lib/libxslt.1.dylib > 0x7fff86adc000 - 0x7fff86addff7 com.apple.audio.units.AudioUnit 1.6.7 (1.6.7)<53299948-2554-0F8F-7501-04B34E49F6CF> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit > 0x7fff86ade000 - 0x7fff86ae4ff7 com.apple.DiskArbitration 2.3 (2.3)<857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration > 0x7fff86ae5000 - 0x7fff86ae6fff liblangid.dylib ??? (???) /usr/lib/liblangid.dylib > 0x7fff86ec5000 - 0x7fff86f14fef libTIFF.dylib ??? (???)<5DE9F066-9B64-CBE4-976A-CC7B8DD3C31A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib > 0x7fff86f15000 - 0x7fff86f50fff com.apple.AE 496.5 (496.5)<208DF391-4DE6-81ED-C697-14A2930D1BC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE > 0x7fff8737d000 - 0x7fff8741dfff com.apple.LaunchServices 362.3 (362.3) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices > 0x7fff8742c000 - 0x7fff874e1fe7 com.apple.ink.framework 1.3.3 (107)<8C36373C-5473-3A6A-4972-BC29D504250F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink > 0x7fff8756b000 - 0x7fff87584fff com.apple.CFOpenDirectory 10.6 (10.6) /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory > 0x7fff8763b000 - 0x7fff8763bff7 com.apple.CoreServices 44 (44) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices > 0x7fff87960000 - 0x7fff87a45fef com.apple.DesktopServices 1.5.11 (1.5.11)<39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv > 0x7fff87b3e000 - 0x7fff87b52ff7 com.apple.speech.synthesis.framework 3.10.35 (3.10.35)<621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis > 0x7fff87b53000 - 0x7fff87c6afef libxml2.2.dylib 10.3.0 (compatibility 10.0.0)<1B27AFDD-DF87-2009-170E-C129E1572E8B> /usr/lib/libxml2.2.dylib > 0x7fff87c6b000 - 0x7fff87ccbfe7 com.apple.framework.IOKit 2.0 (???)<4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit > 0x7fff882e3000 - 0x7fff88300ff7 libPng.dylib ??? (???)<4815A8F2-24A0-E783-8A5A-7B4959F562D7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib > 0x7fff88509000 - 0x7fff8851dfff libGL.dylib ??? (???)<2ECE3B0F-39E1-3938-BF27-7205C6D0358B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib > 0x7fff8852e000 - 0x7fff8857afff libauto.dylib ??? (???) /usr/lib/libauto.dylib > 0x7fff885f5000 - 0x7fff88607fe7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0)<76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib > 0x7fff8861c000 - 0x7fff88622ff7 com.apple.CommerceCore 1.0 (9.1)<3691E9BA-BCF4-98C7-EFEC-78DA6825004E> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore > 0x7fff8872e000 - 0x7fff8872eff7 com.apple.Cocoa 6.6 (???)<68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa > 0x7fff88bb4000 - 0x7fff88bc2ff7 libkxld.dylib ??? (???)<8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib > 0x7fff88bc3000 - 0x7fff88c84fff libFontParser.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib > 0x7fff88de6000 - 0x7fff88e96fff edu.mit.Kerberos 6.5.11 (6.5.11)<085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos > 0x7fff88efd000 - 0x7fff88fd1fe7 com.apple.CFNetwork 454.12.4 (454.12.4) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork > 0x7fff88fd2000 - 0x7fff8903cfe7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib > 0x7fff89069000 - 0x7fff8939dfef com.apple.CoreServices.CarbonCore 861.39 (861.39)<1386A24D-DD15-5903-057E-4A224FAF580B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore > 0x7fff893e4000 - 0x7fff8940bff7 libJPEG.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib > 0x7fff8940c000 - 0x7fff89412ff7 IOSurface ??? (???) /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface > 0x7fffffe00000 - 0x7fffffe01fff libSystem.B.dylib ??? (???)<9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib > > Model: MacBook5,1, BootROM MB51.0073.B02, 2 processors, Intel Core 2 Duo, 2 GHz, 2 GB, SMC 1.32f6 > Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB > Memory Module: global_name > AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.131.42.4) > Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports > Network Service: AirPort, AirPort, en1 > Serial ATA Device: FUJITSU MHZ2160BH FFS G1, 149.05 GB > Serial ATA Device: OPTIARC DVD RW AD-5960S, 4.1 GB > USB Device: RIM Composite Device, 0x0fca, 0x8004, 0x24100000 / 3 > USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8507, 0x24400000 / 2 > USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0236, 0x04600000 / 3 > USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x04500000 / 2 > USB Device: BCM2045B2, 0x0a5c (Broadcom Corp.), 0x4500, 0x06100000 / 2 > USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8213, 0x06110000 / 4 > > > > > Please check this and report to me > > Best Regards > From calixte at contrib.scilab.org Sat Jul 16 18:20:44 2011 From: calixte at contrib.scilab.org (Calixte Denizet) Date: Sat, 16 Jul 2011 18:20:44 +0200 Subject: [scilab-Users] RE: scinotes regular expression search In-Reply-To: <1308306310555-3075666.post@n3.nabble.com> References: <1308306310555-3075666.post@n3.nabble.com> Message-ID: <1310833244.24616.446.camel@Calixte-Dell> Le vendredi 17 juin 2011 ? 03:25 -0700, David Ch?ze a ?crit : > Hi, > Hi David, > while scinotes editing of a text file, I want to replace ';' character by > 'newline+carriage return' special character : i checked regular expression > in scope option and it seems only to work on search stage of the process, > not for the replacement stage. > Using perl rules for regular expressions i wrote: > search field : ; > replace field : \n or $ > > Can you tell me where i'm wrong ? There is nothing wrong since it is a bug, I'll fix it asap in adding an option "Protect the backslash in replacement string". Could you report a bug ? Regards, Calixte > > thanks, > > David > > -- > View this message in context: http://mailinglists.scilab.org/scinotes-regular-expression-search-tp3048285p3075666.html > Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From d.picard at opgc.univ-bpclermont.fr Mon Jul 18 10:25:23 2011 From: d.picard at opgc.univ-bpclermont.fr (David PICARD) Date: Mon, 18 Jul 2011 10:25:23 +0200 Subject: [scilab-Users] pressure drop/flowrate calculation in hydraulic loop In-Reply-To: <1310046361305-3148237.post@n3.nabble.com> References: <1310046361305-3148237.post@n3.nabble.com> Message-ID: <4E23EDF3.50007@opgc.univ-bpclermont.fr> You can check out this MS XL spreadsheet, originally written for aerosol science, but that includes some formulae in fluid mechanics : http://www.google.fr/url?sa=t&source=web&cd=1&ved=0CBgQFjAA&url=http%3A%2F%2Fwww.tsi.com%2FuploadedFiles%2FProduct_Information%2FLiterature%2FSoftware%2FAerocalc2001.xls&rct=j&q=aerocalc.xls&ei=ge0jTt9OyMXxA8TW0coD&usg=AFQjCNG0R5kS2L5F3AF3vYJU46GBlpMS_Q&cad=rja Le 07/07/2011 15:46, David Ch?ze a ?crit : > hi, > > do you know if there's already a scilab's (maybe +Xcos, modelica) > module/file to calculate the pressure drop in a closed hydraulic loop (in > the field of heating, cooling and ventilating, closed loop is made from > pipes, valves and pumps, in series in parallel arrangment) ? > thanks for your advice, > > David > > -- > View this message in context: http://mailinglists.scilab.org/pressure-drop-flowrate-calculation-in-hydraulic-loop-tp3148237p3148237.html > Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. > > From david.cheze at cea.fr Mon Jul 18 10:28:04 2011 From: david.cheze at cea.fr (=?UTF-8?Q?David_Ch=C3=A8ze?=) Date: Mon, 18 Jul 2011 01:28:04 -0700 (PDT) Subject: scinotes regular expression search In-Reply-To: <1310833244.24616.446.camel@Calixte-Dell> References: <1308306310555-3075666.post@n3.nabble.com> <1310833244.24616.446.camel@Calixte-Dell> Message-ID: <1310977684055-3178490.post@n3.nabble.com> That's what I tried to do in this bug report : http://bugzilla.scilab.org/show_bug.cgi?id=9740 http://bugzilla.scilab.org/show_bug.cgi?id=9740 Is it necessary to open a new one ? david -- View this message in context: http://mailinglists.scilab.org/scinotes-regular-expression-search-tp3048285p3178490.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From calixte.denizet at scilab.org Mon Jul 18 10:42:43 2011 From: calixte.denizet at scilab.org (Calixte Denizet) Date: Mon, 18 Jul 2011 10:42:43 +0200 Subject: [scilab-Users] RE: scinotes regular expression search In-Reply-To: <1310977684055-3178490.post@n3.nabble.com> References: <1308306310555-3075666.post@n3.nabble.com> <1310833244.24616.446.camel@Calixte-Dell> <1310977684055-3178490.post@n3.nabble.com> Message-ID: <4E23F203.3020204@scilab.org> Hi David, No. When the checkbox "Regular expression" is checked, you could use \n or \t or \r in replacement string (and $i for the matching pattern too) Regards, Calixte On 18/07/2011 10:28, David Ch?ze wrote: > That's what I tried to do in this bug report : > http://bugzilla.scilab.org/show_bug.cgi?id=9740 > http://bugzilla.scilab.org/show_bug.cgi?id=9740 > > Is it necessary to open a new one ? > > david > > -- > View this message in context: http://mailinglists.scilab.org/scinotes-regular-expression-search-tp3048285p3178490.html > Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From calixte.denizet at scilab.org Mon Jul 18 11:05:32 2011 From: calixte.denizet at scilab.org (Calixte Denizet) Date: Mon, 18 Jul 2011 11:05:32 +0200 Subject: [scilab-Users] SEP 68 In-Reply-To: <4E1C4A2D.4020805@univ-lemans.fr> References: <4E1B0A05.9070502@scilab.org> <4E1C4A2D.4020805@univ-lemans.fr> Message-ID: <4E23F75C.6000800@scilab.org> On 12/07/2011 15:20, Samuel GOUGEON wrote: > Hello Calixte, Hi Samuel, > > Thank you for this new useful component within the Scilab IDE. > > Here are some comments about the proposal. > > * About actions on right click : > - It would be nice to be able to open scripts or text files within > an alternative > external editor (gedit, ultraedit, notepad++, etc). This would > require to be > able to declare this editor as an IDE parameter. > I'll propose this alternative when we'll have the Preference system. > - IMO, an action on right click would be preferable to set the CWD than > double-clicking on it, because AFAIK double-clicking is most always > used to open/unfold the dir. I agree that here there is a heading tip > to fold/unfold. But double-click should do the same. When you double-click on the folder foo it is equivalent to a 'cd foo' and a single-click to expand/collapse. It should have different actions for different way to click, is not it ? > By the way : There is already an icon in the console toolbar for > setting > the CWD. Do you plan to keep it? Or why adding CWD through the file > browser, since the console is always opened and already proposes > this action? > I don't know for the moment, if we'll keep the button to set the cwd. > - Add "Setting the current SciNotes directory" (that is not already > proposed > through the console) > Good idea (on right click) > - delete action : Do you plan to always put the file(s) to the (or a) > trash, or is it > a plateform/OS dependent action? Unfortunatelly, there is no standard way to put file in the trash in using java. So maybe we could do it for Windows OS but probably no under GNU/Linux oses. > > * Other actions : > - It would be handy that all actions on Scilab files (.scg, .xcos, > etc) to be also > possible by drag and drop from the browser to the console, and from > the Scilab > interface (console, figure, xcos...) to a directory (default > filenaming rule to be set) > - What about creating a new dir? > - What about moving a file or a set of files from a dir to an other one? > - Would other extension-specific actions defined by the OS be active > (by double-clicking)? Why not. > > * Other questions & comments > - Multiple selection (range of files or file by file) : Would it be > possible, before right-clicking? Yes > > - Would it be possible to resize the widths of columns? Yes > > - i would prefer sorting file names to not be case sensitive You're right, Windows is case insensitive... I'll add an option. > - on the included screenshot example, what does occur when the > path-bar is unfolded? The path bar is just used to enter a path and to show available sub-directories. > > Hoping reading you and other users soon > > Best regards Regards, Calixte > Samuel > > > ----- Message d'origine ----- > De : Calixte Denizet > Date : 11/07/2011 16:34: >> Hello, >> >> Here is a proposal for Scilab 5.4.0. We would like to add a File >> Browser to set the Scilab's current working directory. >> >> Any comments would be appreciated. >> >> Calixte >> > From bruno.belorte at gmail.com Mon Jul 18 22:09:28 2011 From: bruno.belorte at gmail.com (Bruno Belorte) Date: Mon, 18 Jul 2011 17:09:28 -0300 Subject: Axis labels Message-ID: Hello, I have one question, I need to perform one numerical simulation on scilab and the name of labels must be changed. In this case, I have a plot 3D of one cube and I need name for all faces of this cube. Trying to use the function xlabel, axe x left have the same name of axe x right. What i need to do? Thanks. -- Bruno Belorte. -------------- next part -------------- An HTML attachment was scrubbed... URL: From fangorn813 at hotmail.com Tue Jul 19 11:45:33 2011 From: fangorn813 at hotmail.com (arnaud dujeu) Date: Tue, 19 Jul 2011 09:45:33 +0000 Subject: Problem with division by zero Message-ID: Hi, I am using scilab to solve a differential equation and I have an error ("error 27") I don't understand. When K=1 pr K>1 it's okay but as soon as K<1 there is the error. This is my code : function [Xprime]=VanDerPol(t, X) Xprime(1) = X(2) Xprime(2) = g/R*(1-sin(X(1)))/(%pi/2-X(1))-(mu*(K)*R^2*((X(2))^2)/2)+/(R^2*mu*(%pi/2-X(1))) endfunction t=linspace(0,4,3000); X0=[85*%pi/180;0]; [u]=ode(X0,0,t,VanDerPol); plot(t,u(1,:)*180/%pi,'r') plot(t,R*u(2,:)) And there is the Scilab message when K<1 : -->exec('C:\Documents and Settings\ademollerat\My Documents\accelerometre\Ecoulement\VanDerPol-2.sci', -1) Attention: red?finition de la fonction: VanDerPol . Utilisez funcprot(0) pour ?viter ce message !--error 27 Division par z?ro ... at line 7 of function VanDerPol called by : [u]=ode(X0,0,t,VanDerPol); at line 35 of exec file called by : exec('C:\Documents and Settings\ademollerat\My Documents\accelerometre\Ecoulement\VanDerPol-2.sci', -1) Maybe I have made a mistake or maybe it is a bug. Thank you for helping me. Best regards -------------- next part -------------- An HTML attachment was scrubbed... URL: From michael.baudin at scilab.org Tue Jul 19 16:14:51 2011 From: michael.baudin at scilab.org (=?utf-8?b?TWljaGHDq2w=?= Baudin) Date: Tue, 19 Jul 2011 14:14:51 +0000 (UTC) Subject: Linear programming with scilab 5 References: <4E1D4E9C.4010402@utc.fr> Message-ID: Alberto Marin writes: > > > Linpro can indeed be installed in scilab 5.3, and it works fine when I use it in scilab. However, any attempt to call linpro from through the Java interface leads to a general crash:# A fatal error has been detected by the Java Runtime Environment: > ##? SIGSEGV (0xb) at pc=0x00007fc925a8571e, pid=5580, tid=140502169204480## JRE version: 6.0_20-b20# Java VM: OpenJDK 64-Bit Server VM (19.0-b09 mixed mode linux-amd64 compressed oops)# Derivative: IcedTea6 1.9.8 > # Distribution: Ubuntu 10.04.1 LTS, package 6b20-1.9.8-0ubuntu1~10.04.1# Problematic frame:# C? [libscioutput_stream.so.5+0x871e]? msgs_+0x2e## An error report file with more information is saved as:# /home/amarin/NetBeansProjects/newst cambio/CaMBio/hs_err_pid5580.log > ## If you would like to submit a bug report, please include# instructions how to reproduce the bug and visit:#?? https://bugs.launchpad.net/ubuntu/+source/openjdk-6/This happened to me also with linpro in scilab 4.2 in every 64 bits machine (as far as I've tested, it is the same now) and it? is the reason why I decided to upgrade in the first place. If anyone could provide insight in this error or how to use Karmarkar to solve these rank deficient problems I would be really grateful. All the best,Alberto Hi, The two statements : atomsInstall("quapro"); atomsLoad("quapro"); will make the linpro function available in your Scilab. Once done, I find fopt=- 100. On the other hand, xopt is nonzero for only 20 components. I noticed that the code can be made simpler if I replace the "0.0" values by "0", which have the same meaning in Scilab. If I understand it well, your problem has 93 bounded unknowns, 96 equality constraints and 3 inequality constraints : -->size(obj) ans = 93. 1. -->size(eqMat) ans = 96. 93. -->size(eqRhs) ans = 96. 1. -->size(ineqMat) ans = 3. 93. -->size(ineqRhs) ans = 3. 1. -->size(ub) ans = 93. 1. -->size(lb) ans = 93. 1. The problem may be related to the fact that there are more equality constraints (i.e. 96) than unknowns (i.e. 93). But it seems that only 81 of the 96 rows of the equality matrix are numerically linearly independent : -->rank(eqMat) ans = 81. There are no such rank defficient tests neither for karmarkar, nor for linpro. Actually, there were no unit test at all for linpro until June 2011... But I expect that linpro is more robust in general, so I am not surprised by the result. But karmarkar does not seem to work here, and returns with the exitflag equals to -1, meaning that the initial guess x0 could not be found. More testing should be done to create a simpler rank defficient linear problem with, say 4-5 unknowns and see what happens. Do you have such a simple example and its exact solution ? When you say that you have problems when you use linpro through the Java interface, what do you mean exactly ? Can you provide a script ? Regards, Micha?l Baudin From michael.baudin at scilab.org Tue Jul 19 16:31:49 2011 From: michael.baudin at scilab.org (=?utf-8?b?TWljaGHDq2w=?= Baudin) Date: Tue, 19 Jul 2011 14:31:49 +0000 (UTC) Subject: pressure drop/flowrate calculation in hydraulic loop References: <1310046361305-3148237.post@n3.nabble.com> <4E23EDF3.50007@opgc.univ-bpclermont.fr> Message-ID: David PICARD writes: > > You can check out this MS XL spreadsheet, originally written for aerosol > science, but that includes some formulae in fluid mechanics : > http://www.google.fr/url? sa=t&source=web&cd=1&ved=0CBgQFjAA&url=http%3A%2F%2Fwww.tsi.com%2FuploadedFiles% 2FProduct_Information%2FLiterature%2FSoftware%2FAerocalc2001.xls&rct=j&q=aerocal c.xls&ei=ge0jTt9OyMXxA8TW0coD&usg=AFQjCNG0R5kS2L5F3AF3vYJU46GBlpMS_Q&cad=rja Hi, The 1 dimensional partial differential equations which can model conservation laws in pipes can be solved by finite volumes methods, for example. I collected the existing finite volumes tools for Scilab on the wiki: http://wiki.scilab.org/Finite%20Volumes%20in%20Scilab The PDE block in XCos may interest you. But, overall, there is no general- purpose industrial grade tool currently in Scilab, neither for 1D, 2D or 3D fluid flows. This is why some of us suggested the following GSOC project : http://wiki.scilab.org/Contributor%20-%20PDE But there were no student who applied on it. If you are interested on this topic and want to lead a project, please contact us. Best regards, Micha?l Baudin From david.cheze at cea.fr Tue Jul 19 17:21:27 2011 From: david.cheze at cea.fr (=?UTF-8?Q?David_Ch=C3=A8ze?=) Date: Tue, 19 Jul 2011 08:21:27 -0700 (PDT) Subject: pressure drop/flowrate calculation in hydraulic loop In-Reply-To: References: <1310046361305-3148237.post@n3.nabble.com> <4E23EDF3.50007@opgc.univ-bpclermont.fr> Message-ID: <1311088887379-3182823.post@n3.nabble.com> Hi, thanks for your answers : in addition, another pretty approach (as far i know) would be partially provided by the result of this work : http://www.ensta-paristech.fr/~pcarpent/TP_Reseau/ENSMP/ where use of scilab is already nicely proposed. I will read more in depth the PDE project of GSOC but we are definitly interested on it. Best regards, David Ch?ze -- View this message in context: http://mailinglists.scilab.org/pressure-drop-flowrate-calculation-in-hydraulic-loop-tp3148237p3182823.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From denis.crete at thalesgroup.com Tue Jul 19 19:29:04 2011 From: denis.crete at thalesgroup.com (CRETE Denis) Date: Tue, 19 Jul 2011 19:29:04 +0200 Subject: [scilab-Users] Problem with division by zero In-Reply-To: References: Message-ID: <9708_1311096555_4E25BEEB_9708_10660_1_908CBC9017354841B2F32BBEC70A05A101C35648CCB3@THSONEA01CMS01P.one.grp> Hello, it may have to do with the (non-physical?) expression of the ODE. Besides the fact that the last term is mathematically ill-defined (starting with "+/"), in the case K=0, the second derivative of X is positive for x<%pi/2: it may then reach the value %pi/2, which makes denominators be 0. Physically, these denominators (%pi/2-X) look very strange as they may govern divergence of the force in the last term. However, it appears also in the first term, where divergence is prevented because of (1-sin X): it may than be necessary to rewrite the function (1-sinX)/(%pi/2-X), with the addition of the case X=%pi/2, where the function goes to 0 by continuity. HTH Denis De : arnaud dujeu [mailto:fangorn813 at hotmail.com] Envoy? : mardi 19 juillet 2011 11:46 ? : users at lists.scilab.org Objet : [scilab-Users] Problem with division by zero Hi, I am using scilab to solve a differential equation and I have an error ("error 27") I don't understand. When K=1 pr K>1 it's okay but as soon as K<1 there is the error. This is my code : function [Xprime]=VanDerPol(t, X) Xprime(1) = X(2) Xprime(2) = g/R*(1-sin(X(1)))/(%pi/2-X(1))-(mu*(K)*R^2*((X(2))^2)/2)+/(R^2*mu*(%pi/2-X(1))) endfunction t=linspace(0,4,3000); X0=[85*%pi/180;0]; [u]=ode(X0,0,t,VanDerPol); plot(t,u(1,:)*180/%pi,'r') plot(t,R*u(2,:)) And there is the Scilab message when K<1 : -->exec('C:\Documents and Settings\ademollerat\My Documents\accelerometre\Ecoulement\VanDerPol-2.sci', -1) Attention: red?finition de la fonction: VanDerPol . Utilisez funcprot(0) pour ?viter ce message !--error 27 Division par z?ro ... at line 7 of function VanDerPol called by : [u]=ode(X0,0,t,VanDerPol); at line 35 of exec file called by : exec('C:\Documents and Settings\ademollerat\My Documents\accelerometre\Ecoulement\VanDerPol-2.sci', -1) Maybe I have made a mistake or maybe it is a bug. Thank you for helping me. Best regards -------------- next part -------------- An HTML attachment was scrubbed... URL: From yachiliu at gmail.com Tue Jul 19 21:32:06 2011 From: yachiliu at gmail.com (Ann YC Liu) Date: Wed, 20 Jul 2011 03:32:06 +0800 Subject: Cannot see the figure after using plot() Message-ID: Hello, I installed scilab 5.2.3 on window vista with service pack2. I tried to use plot( ) to plot figure but nothing is shown on the graphic window. (please see the copy of my screen below) I cannot figure out what's going on, could you help me for this? the following is what I typed to plot the figure...nothing special. t = 0:%pi/100:2*%pi; y = sin(t); plot(t,y); Best Regard Liu [image: scilab problem.jpg] -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: scilab problem.jpg Type: image/jpeg Size: 51808 bytes Desc: not available URL: From goepfert.benoit at gmail.com Wed Jul 20 09:06:51 2011 From: goepfert.benoit at gmail.com (Benoit Goepfert) Date: Wed, 20 Jul 2011 16:06:51 +0900 Subject: [scilab-Users] gateway fortran cpp Message-ID: Hello, I'm currently creating a toolbox that contains c++ and fortran files. As I handle c++ objects, it's more convenient for me to use c++ files in my gateway. Thus, for the compilation in scilab, I just need a header where i summerize all my functions as follows : extern "C"{ int func1(char *fname) int func2(char *fname) ... } " When those functions "func1", "func2" are linked to the c++ original code, the compilation in scilab works perfectly (builder and loader). However, when those functions are linked to the fortran original code (which means that in my gateway file, I call a fortran function with "F2C"), the compilation in scilab doesn't work and i get the following error while I'm trying to execute the loader (the builder passes) : addinter(libsplspcgateway_path + filesep() + 'libsplspcgateway' + getdynlibext(), 'libsplspcgateway', list_functions); !--error 236 addinter: The shared archive was not loaded: /home/.../sci_gateway/cpp//libsplspcgateway.so: undefined symbol: BAGMRES_ (where BAGMRES is the fortran function that I call with F2C in my gateway file in c++). As I already succeeded to use fortran functions in gateway files in c, my question is the following : Is it forbidden to call a fortran file in a gateway file in c++ and must I use inevitably a gateway file in c? If on contrary it's possible, where could the problem come from? I hope to be clear and I thank you for your help. Best regards, -- Benoit Goepfert -------------- next part -------------- An HTML attachment was scrubbed... URL: From ginters.buss at gmail.com Wed Jul 20 10:23:52 2011 From: ginters.buss at gmail.com (=?UTF-8?Q?Ginters_Bu=C5=A1s?=) Date: Wed, 20 Jul 2011 11:23:52 +0300 Subject: speed of Scilab 5.3.2 vs Scilab 5.3.1 Message-ID: Hi, Just to let you know: I just found out that version 5.3.2. runs faster than 5.3.1. Say, this code: tic() sigeta=2; sigeps=1; mi=[]; c=[]; y=[]; skait=[]; sauc2=[]; rho=[]; f1=1.2; f2=-0.5; n=102000; k=2000; c=grand(n,1,'nor',0,sigeta); c(2)=f1*c(1)+c(2); mi=grand(n,1,'nor',0,sigeps); for i=3:n; c(i)=c(i)+f1*c(i-1)+f2*c(i-2); end for i=2:n; mi(i)=mi(i)+mi(i-1); end y=c+mi; y(1:k)=[]; c(1:k)=[]; i=1:length(y); skait=sum((y(i)-mean(y)).*(c(i)-mean(c))); sauc2=sum((y(i)-mean(y))^2)*sum((c(i)-mean(c))^2); rho=skait/sqrt(sauc2) toc() takes approx. 1.75sec. (on my PC) on Scilab 5.3.2, while approx. 6 sec. on Scilab 5.3.1. Gin. -------------- next part -------------- An HTML attachment was scrubbed... URL: From ginters.buss at gmail.com Wed Jul 20 10:35:10 2011 From: ginters.buss at gmail.com (=?UTF-8?Q?Ginters_Bu=C5=A1s?=) Date: Wed, 20 Jul 2011 11:35:10 +0300 Subject: speed of Scilab 5.3.2 vs Scilab 5.3.1 In-Reply-To: References: Message-ID: And about 1.65sec. on Scilab 4.1.2. So, still Scilab 4 is faster, but only marginally. On Wed, Jul 20, 2011 at 11:23 AM, Ginters Bu?s wrote: > Hi, > > Just to let you know: > I just found out that version 5.3.2. runs faster than 5.3.1. > > Say, this code: > > tic() > sigeta=2; sigeps=1; > mi=[]; c=[]; y=[]; skait=[]; sauc2=[]; rho=[]; > f1=1.2; f2=-0.5; > n=102000; k=2000; > c=grand(n,1,'nor',0,sigeta); > c(2)=f1*c(1)+c(2); > mi=grand(n,1,'nor',0,sigeps); > for i=3:n; > c(i)=c(i)+f1*c(i-1)+f2*c(i-2); > end > for i=2:n; > mi(i)=mi(i)+mi(i-1); > end > y=c+mi; > y(1:k)=[]; > c(1:k)=[]; > i=1:length(y); > skait=sum((y(i)-mean(y)).*(c(i)-mean(c))); > sauc2=sum((y(i)-mean(y))^2)*sum((c(i)-mean(c))^2); > rho=skait/sqrt(sauc2) > toc() > > takes approx. 1.75sec. (on my PC) on Scilab 5.3.2, while approx. 6 sec. on > Scilab 5.3.1. > > Gin. > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ginters.buss at gmail.com Wed Jul 20 11:38:42 2011 From: ginters.buss at gmail.com (=?UTF-8?Q?Ginters_Bu=C5=A1s?=) Date: Wed, 20 Jul 2011 12:38:42 +0300 Subject: [scilab-Users] Re: speed of Scilab 5.3.2 vs Scilab 5.3.1 In-Reply-To: <003001cc46ba$250c82a0$6f2587e0$@scilab.org> References: <003001cc46ba$250c82a0$6f2587e0$@scilab.org> Message-ID: Then Scilab 5.3.2. spends about 0.4sec Scilab 5.3.1. spends about 5 sec Scilab 4.1.2. spends about 0.15sec However, the code result is different from the previous one: n=100000; sigeps=1; mi=grand(n,1,'nor',0,sigeps); for i=2:n; mi(i)=mi(i)+mi(i-1); end produces a random walk, but n=100000; sigeps=1; mi=grand(n,1,'nor',0,sigeps); mi(2:n)=mi(2:n)+mi(1:n-1); does not. Gin. On Wed, Jul 20, 2011 at 11:50 AM, Allan CORNET wrote: > Hi,**** > > ** ** > > You know that you can remove loop in your script ?**** > > ** ** > > Try:**** > > ** ** > > tic()**** > > sigeta=2; sigeps=1;**** > > mi=[];**** > > c=[];**** > > y=[];**** > > skait=[];**** > > sauc2=[];**** > > rho=[];**** > > f1=1.2;**** > > f2=-0.5;**** > > n=102000;**** > > k=2000;**** > > c=grand(n,1,'nor',0,sigeta);**** > > c(2)=f1*c(1)+c(2);**** > > mi=grand(n,1,'nor',0,sigeps);**** > > ** ** > > c(3:n) = c(3:n)+f1*c(2:n-1)+f2*c(1:n-2);**** > > ** ** > > mi(2:n)=mi(2:n)+mi(1:n-1);**** > > ** ** > > y=c+mi;**** > > y(1:k)=[];**** > > c(1:k)=[];**** > > i=1:length(y);**** > > skait=sum((y(i)-mean(y)).*(c(i)-mean(c)));**** > > sauc2=sum((y(i)-mean(y))^2)*sum((c(i)-mean(c))^2);**** > > rho=skait/sqrt(sauc2)**** > > toc()**** > > ** ** > > Allan**** > > ** ** > > *De :* Ginters Bu?s [mailto:ginters.buss at gmail.com] > *Envoy? :* mercredi 20 juillet 2011 10:35 > *? :* users at lists.scilab.org > *Objet :* [scilab-Users] Re: speed of Scilab 5.3.2 vs Scilab 5.3.1**** > > ** ** > > And about 1.65sec. on Scilab 4.1.2. > > So, still Scilab 4 is faster, but only marginally. > > **** > > On Wed, Jul 20, 2011 at 11:23 AM, Ginters Bu?s > wrote:**** > > Hi, > > Just to let you know: > I just found out that version 5.3.2. runs faster than 5.3.1. > > Say, this code: > > tic() > sigeta=2; sigeps=1; > mi=[]; c=[]; y=[]; skait=[]; sauc2=[]; rho=[]; > f1=1.2; f2=-0.5; > n=102000; k=2000; > c=grand(n,1,'nor',0,sigeta); > c(2)=f1*c(1)+c(2); > mi=grand(n,1,'nor',0,sigeps); > for i=3:n; > c(i)=c(i)+f1*c(i-1)+f2*c(i-2); > end > for i=2:n; > mi(i)=mi(i)+mi(i-1); > end > y=c+mi; > y(1:k)=[]; > c(1:k)=[]; > i=1:length(y); > skait=sum((y(i)-mean(y)).*(c(i)-mean(c))); > sauc2=sum((y(i)-mean(y))^2)*sum((c(i)-mean(c))^2); > rho=skait/sqrt(sauc2) > toc() > > takes approx. 1.75sec. (on my PC) on Scilab 5.3.2, while approx. 6 sec. on > Scilab 5.3.1. > > Gin.**** > > ** ** > -------------- next part -------------- An HTML attachment was scrubbed... URL: From martial.picot at wanadoo.fr Wed Jul 20 12:30:34 2011 From: martial.picot at wanadoo.fr (Picot Martial) Date: Wed, 20 Jul 2011 12:30:34 +0200 Subject: [scilab-Users] Cannot see the figure after using plot() In-Reply-To: References: Message-ID: <4E26AE4A.9000009@wanadoo.fr> Le 19/07/2011 21:32, Ann YC Liu a ?crit : > Hello, > I installed scilab 5.2.3 on window vista with service pack2. > I tried to use plot( ) to plot figure but nothing is shown on the > graphic window. > (please see the copy of my screen below) > I cannot figure out what's going on, could you help me for this? > the following is what I typed to plot the figure...nothing special. > t = 0:%pi/100:2*%pi; > y = sin(t); > plot(t,y); > Best Regard > Liu > scilab problem.jpg Perhaps try with linspace for t. Friendly Martial Picot -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/jpeg Size: 51808 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: introscilab.pdf Type: application/pdf Size: 1245912 bytes Desc: not available URL: From amsanguino at gmail.com Wed Jul 20 13:14:14 2011 From: amsanguino at gmail.com (Alberto Marin) Date: Wed, 20 Jul 2011 13:14:14 +0200 Subject: [scilab-Users] Re: Linear programming with scilab 5 In-Reply-To: References: <4E1D4E9C.4010402@utc.fr> Message-ID: > > The problem may be related to the fact that there are more equality > constraints > (i.e. 96) than unknowns (i.e. 93). But it seems that only 81 of the 96 rows > of > the equality matrix are numerically linearly independent : > > -->rank(eqMat) > ans = > 81. > > There are no such rank defficient tests neither for karmarkar, nor for > linpro. > Actually, there were no unit test at all for linpro until June 2011... But > I > expect that linpro is more robust in general, so I am not surprised by the > result. But karmarkar does not seem to work here, and returns with the > exitflag > equals to -1, meaning that the initial guess x0 could not be found. More > testing > should be done to create a simpler rank defficient linear problem with, say > 4-5 > unknowns and see what happens. Do you have such a simple example and its > exact > solution ? > This kind of rank deficiency is very frequent in this kind of problem (biochemical networks) and has never been a problem using the simplex method. Since the only thing I know about the karmarkar algorithm is that it is an interior point method, I have no clue about what the error message about rank deficiency means. I have tried eliminating the redundancies but the reesult is the same so the error may refer to a completely different issue. > > When you say that you have problems when you use linpro through the Java > interface, what do you mean exactly ? Can you provide a script ? > If I put this problem in an .sce file and execute it, I get the result you mention. No problem so far. If I call linpro from the java interface with the Siclab.exec() method it also works fine as long as I use a 32 bits machine. But calling linpro through the exec() method in any linux 64 bits machine crashes the java virtual machine. This same problem happened whenever I called the javasci engine with scilab 4.2 but in 5.3 it is restricted to the linpro function, any other operation I've tried so far (including karmarkar) seem to work fine. Alberto > > Regards, > > Micha?l Baudin > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ychattah at iai.co.il Wed Jul 20 14:25:01 2011 From: ychattah at iai.co.il (computidoo) Date: Wed, 20 Jul 2011 05:25:01 -0700 (PDT) Subject: mfprintf Message-ID: <1311164701390-3185296.post@n3.nabble.com> hello, I'm using the mfprintf to write an ascii file. the data is from mat file. i have a variable that its an array. a=[1 1;1 1] and i want to have in the ascii a ====== 1 1 1 1 ====== what is the line that i have to write best regards computidoo -- View this message in context: http://mailinglists.scilab.org/mfprintf-tp3185296p3185296.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From michael.baudin at scilab.org Wed Jul 20 14:49:28 2011 From: michael.baudin at scilab.org (=?ISO-8859-1?Q?Micha=EBl_Baudin?=) Date: Wed, 20 Jul 2011 14:49:28 +0200 Subject: [scilab-Users] Re: Linear programming with scilab 5 In-Reply-To: References: <4E1D4E9C.4010402@utc.fr> Message-ID: <4E26CED8.6070101@scilab.org> Le 20/07/2011 13:14, Alberto Marin a ?crit : > > > > This kind of rank deficiency is very frequent in this kind of problem > (biochemical networks) and has never been a problem using the simplex > method. Since the only thing I know about the karmarkar algorithm is > that it is an interior point method, I have no clue about what the > error message about rank deficiency means. I have tried eliminating > the redundancies but the reesult is the same so the error may refer to > a completely different issue. The "karmarkar" function has a very poor name: it does *not* implement Karmarkar's algorithm... The algorithm used in the function is based on the primal affine scaling algorithm, as discovered by Dikin in 1967, and then re-discovered by Barnes and Vanderbei et al in 1986. To move the problem forward, I will create a separate bug report on bugzilla. > > When you say that you have problems when you use linpro through > the Java > interface, what do you mean exactly ? Can you provide a script ? > > If I put this problem in an .sce file and execute it, I get the > result you mention. No problem so far. If I call linpro from the java > interface with the Siclab.exec() method it also works fine as long as > I use a 32 bits machine. But calling linpro through the exec() method > in any linux 64 bits machine crashes the java virtual machine. This > same problem happened whenever I called the javasci engine with scilab > 4.2 but in 5.3 it is restricted to the linpro function, any other > operation I've tried so far (including karmarkar) seem to work fine. I am not familiar with the javasci engine. Maybe some expert on this topic can help... Regards, Micha?l -------------- next part -------------- An HTML attachment was scrubbed... URL: From calixte.denizet at scilab.org Wed Jul 20 14:53:06 2011 From: calixte.denizet at scilab.org (Calixte Denizet) Date: Wed, 20 Jul 2011 14:53:06 +0200 Subject: [scilab-Users] Cannot see the figure after using plot() In-Reply-To: References: Message-ID: <4E26CFB2.7020108@scilab.org> Hi, Try to update the driver of your graphic card. Regards, Calixte On 19/07/2011 21:32, Ann YC Liu wrote: > Hello, > I installed scilab 5.2.3 on window vista with service pack2. > I tried to use plot( ) to plot figure but nothing is shown on the > graphic window. > (please see the copy of my screen below) > I cannot figure out what's going on, could you help me for this? > the following is what I typed to plot the figure...nothing special. > t = 0:%pi/100:2*%pi; > y = sin(t); > plot(t,y); > Best Regard > Liu > scilab problem.jpg -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/jpeg Size: 51808 bytes Desc: not available URL: From michael.baudin at scilab.org Wed Jul 20 14:59:32 2011 From: michael.baudin at scilab.org (=?ISO-8859-1?Q?Micha=EBl_Baudin?=) Date: Wed, 20 Jul 2011 14:59:32 +0200 Subject: [scilab-Users] Re: Linear programming with scilab 5 In-Reply-To: <4E26CED8.6070101@scilab.org> References: <4E1D4E9C.4010402@utc.fr> <4E26CED8.6070101@scilab.org> Message-ID: <4E26D134.9060708@scilab.org> I created the bug report : http://bugzilla.scilab.org/show_bug.cgi?id=9751 Regards, Micha?l Baudin Le 20/07/2011 14:49, Micha?l Baudin a ?crit : > Le 20/07/2011 13:14, Alberto Marin a ?crit : >> >> >> >> This kind of rank deficiency is very frequent in this kind of problem >> (biochemical networks) and has never been a problem using the simplex >> method. Since the only thing I know about the karmarkar algorithm is >> that it is an interior point method, I have no clue about what the >> error message about rank deficiency means. I have tried eliminating >> the redundancies but the reesult is the same so the error may refer >> to a completely different issue. > > The "karmarkar" function has a very poor name: it does *not* implement > Karmarkar's algorithm... The algorithm used in the function is based > on the primal affine scaling algorithm, as discovered by Dikin in > 1967, and then re-discovered by Barnes and Vanderbei et al in 1986. > > To move the problem forward, I will create a separate bug report on > bugzilla. > >> >> When you say that you have problems when you use linpro through >> the Java >> interface, what do you mean exactly ? Can you provide a script ? >> >> If I put this problem in an .sce file and execute it, I get the >> result you mention. No problem so far. If I call linpro from the java >> interface with the Siclab.exec() method it also works fine as long as >> I use a 32 bits machine. But calling linpro through the exec() >> method in any linux 64 bits machine crashes the java virtual machine. >> This same problem happened whenever I called the javasci engine with >> scilab 4.2 but in 5.3 it is restricted to the linpro function, any >> other operation I've tried so far (including karmarkar) seem to work >> fine. > > I am not familiar with the javasci engine. Maybe some expert on this > topic can help... > > Regards, > > Micha?l -- Micha?l Baudin Ing?nieur de d?veloppement michael.baudin at scilab.org ------------------------- Consortium Scilab - Digiteo Domaine de Voluceau - Rocquencourt B.P. 105 - 78153 Le Chesnay Cedex Tel. : 01 39 63 56 87 - Fax : 01 39 63 55 94 -------------- next part -------------- An HTML attachment was scrubbed... URL: From vogt at centre-cired.fr Wed Jul 20 14:59:54 2011 From: vogt at centre-cired.fr (Adrien Vogt-Schilb) Date: Wed, 20 Jul 2011 14:59:54 +0200 Subject: [scilab-Users] mfprintf In-Reply-To: <1311164701390-3185296.post@n3.nabble.com> References: <1311164701390-3185296.post@n3.nabble.com> Message-ID: <4E26D14A.6070505@centre-cired.fr> On 20/07/2011 14:25, computidoo wrote: > hello, > > and i want to have in the ascii > a > ====== > 1 1 > 1 1 > ====== > > what is the line that i have to write > > best regard > computidoo Hi i have some functions to save and load things this way (the comments are here for you, read them!) this is not completely bulltetpruf, you should make sure to manage folders properly for instance hope it helps //I would recommend to drop the "===", so the file is much easier to parsefunctionmybetterexport(varname)matval=evstr(varname);[nm]=size(matval);output=emptystr(n+1,m);//n+3 if you // output = emptystr(n+3,m); //if you really need the =====output(1,1)=varname;output(2:$,:)=string(matval);// output(3:$-1,:) = string(matval);// output([2 $],:) = "="write_csv(output,varname+".tsv")//you should be able to open the tsv file with excel, in a very convinient way. you can use any notepad tooendfunctionfoo=rand(3,5);//two ways to use the functionsmybetterexportfoomybetterexport("foo");//lets read the generated file[valtxt]=fscanfMat("foo.tsv")//this function will parse "foo.tsv" very very quickly//which allows : functionmybetterimport(varname)[valtxt]=fscanfMat(varname+".tsv")//very useful ! ifvarname~=stripblanks(txt,%t)//paranoid check, you could drop this an rely on the filenameerror("file corrupted")enddisp(varname+" will be loaded to scilab")execstr("["+varname+"]=return(val)")//if you want to understand this wizzard stuff, try "help execstr" and "help return", and also http://wiki.scilab.org/howto/global%20and%20local%20variablesendfunctionclearfoo//forgets foomybetterimportfoomybetterimport("foo")foo//this is total magic regards, Adrien Vogt-Schilb -------------- next part -------------- An HTML attachment was scrubbed... URL: From vogt at centre-cired.fr Wed Jul 20 15:03:27 2011 From: vogt at centre-cired.fr (Adrien Vogt-Schilb) Date: Wed, 20 Jul 2011 15:03:27 +0200 Subject: [scilab-Users] mfprintf In-Reply-To: <4E26D14A.6070505@centre-cired.fr> References: <1311164701390-3185296.post@n3.nabble.com> <4E26D14A.6070505@centre-cired.fr> Message-ID: <4E26D21F.9070308@centre-cired.fr> On 20/07/2011 14:59, Adrien Vogt-Schilb wrote: > On 20/07/2011 14:25, computidoo wrote: >> hello, >> >> and i want to have in the ascii >> a >> ====== >> 1 1 >> 1 1 >> ====== >> >> what is the line that i have to write >> >> best regard >> computidoo > > Hi the precedent mail was poorly rendered, here it goes again without fancy formating : //I would recommend to drop the "===", so the file is much easier to parse function mybetterexport(varname) matval = evstr(varname); [n m] = size(matval); output = emptystr(n+1,m); //n+3 if you // output = emptystr(n+3,m); //if you really need the ===== output(1,1) = varname; output(2:$,:) = string(matval); // output(3:$-1,:) = string(matval); // output([2 $],:) = "=" write_csv(output,varname+".tsv") //you should be able to open the tsv file with excel, in a very convinient way. you can use any notepad too endfunction foo=rand(3,5); //two ways to use the functions mybetterexport foo mybetterexport("foo"); //lets read the generated file [ val txt] = fscanfMat ("foo.tsv") //this function will parse "foo.tsv" very very quickly //which allows : function mybetterimport(varname) [ val txt] = fscanfMat (varname+".tsv") //very useful ! if varname~=stripblanks(txt,%t) //paranoid check, you could drop this an rely on the filename error("file corrupted") end disp(varname+" will be loaded to scilab") execstr("["+varname+"]=return(val)") //if you want to understand this wizzard stuff, try "help execstr" and "help return", and also http://wiki.scilab.org/howto/global%20and%20local%20variables endfunction clear foo //forgets foo mybetterimport foo mybetterimport("foo") foo //this is total magic -- *Adrien Vogt-Schilb* Research Fellow vogt at centre-cired.fr Tel: (+33) 1 43 94 73 96 Fax: (+33) 1 43 94 73 70 CIRED 45 bis, Av de la Belle Gabrielle F-94736 Nogent-sur-Marne http://www.centre-cired.fr/ -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: logocired.png Type: image/png Size: 4092 bytes Desc: not available URL: From amsanguino at gmail.com Wed Jul 20 15:25:14 2011 From: amsanguino at gmail.com (Alberto Marin) Date: Wed, 20 Jul 2011 15:25:14 +0200 Subject: [scilab-Users] Re: Linear programming with scilab 5 In-Reply-To: <4E26D134.9060708@scilab.org> References: <4E1D4E9C.4010402@utc.fr> <4E26CED8.6070101@scilab.org> <4E26D134.9060708@scilab.org> Message-ID: Thanks a lot. Whenever I have time I will have a look at the algorithm and try to find out a smaller example. Alberto On Wed, Jul 20, 2011 at 2:59 PM, Micha?l Baudin wrote: > ** > I created the bug report : http://bugzilla.scilab.org/show_bug.cgi?id=9751 > > Regards, > > Micha?l Baudin > > Le 20/07/2011 14:49, Micha?l Baudin a ?crit : > > Le 20/07/2011 13:14, Alberto Marin a ?crit : > > > >> >> This kind of rank deficiency is very frequent in this kind of problem > (biochemical networks) and has never been a problem using the simplex > method. Since the only thing I know about the karmarkar algorithm is that it > is an interior point method, I have no clue about what the error message > about rank deficiency means. I have tried eliminating the redundancies but > the reesult is the same so the error may refer to a completely different > issue. > > > The "karmarkar" function has a very poor name: it does *not* implement > Karmarkar's algorithm... The algorithm used in the function is based on the > primal affine scaling algorithm, as discovered by Dikin in 1967, and then > re-discovered by Barnes and Vanderbei et al in 1986. > > To move the problem forward, I will create a separate bug report on > bugzilla. > > >> When you say that you have problems when you use linpro through the Java >> interface, what do you mean exactly ? Can you provide a script ? >> > > If I put this problem in an .sce file and execute it, I get the result you > mention. No problem so far. If I call linpro from the java interface with > the Siclab.exec() method it also works fine as long as I use a 32 bits > machine. But calling linpro through the exec() method in any linux 64 bits > machine crashes the java virtual machine. This same problem happened > whenever I called the javasci engine with scilab 4.2 but in 5.3 it is > restricted to the linpro function, any other operation I've tried so far > (including karmarkar) seem to work fine. > > > I am not familiar with the javasci engine. Maybe some expert on this topic > can help... > > Regards, > > Micha?l > > > > -- > Micha?l Baudin > Ing?nieur de d?veloppementmichael.baudin at scilab.org > ------------------------- > Consortium Scilab - Digiteo > Domaine de Voluceau - Rocquencourt > B.P. 105 - 78153 Le Chesnay Cedex > Tel. : 01 39 63 56 87 - Fax : 01 39 63 55 94 > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From p_ledoux at yahoo.com.br Wed Jul 20 16:43:22 2011 From: p_ledoux at yahoo.com.br (Pedro Ledoux) Date: Wed, 20 Jul 2011 07:43:22 -0700 (PDT) Subject: [scilab-Users] gateway fortran cpp In-Reply-To: References: Message-ID: <1311173002.39220.YahooMailNeo@web120521.mail.ne1.yahoo.com> about Fortran for which and why are you using it? I`ve wrked as Fortran progeamer to a geologist. I was able to make the main program in C which could call Fortran functions using the compilers gcc and Open64. De: Benoit Goepfert Para: users at lists.scilab.org Enviadas: Quarta-feira, 20 de Julho de 2011 3:06 Assunto: [scilab-Users] gateway fortran cpp Hello, I'm currently creating a toolbox that contains c++ and fortran files. As I handle c++ objects, it's more convenient for me to use c++ files in my gateway. Thus, for the compilation in scilab, I just need a header where i summerize all my functions as follows : extern "C"{ int func1(char *fname) int func2(char *fname) ... } " When those functions "func1", "func2" are linked to the c++ original code, the compilation in scilab works perfectly (builder and loader). However, when those functions are linked to the fortran original code (which means that in my gateway file, I call a fortran function with "F2C"), the compilation in scilab doesn't work and i get the following error while I'm trying to execute the loader (the builder passes) : addinter(libsplspcgateway_path + filesep() + 'libsplspcgateway' + getdynlibext(), 'libsplspcgateway', list_functions); ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? !--error 236 addinter: The shared archive was not loaded: /home/.../sci_gateway/cpp//libsplspcgateway.so: undefined symbol: BAGMRES_ (where BAGMRES is the fortran function that I call with F2C in my gateway file in c++). As I already succeeded to use fortran functions in gateway files in c, my question is the following : Is it forbidden to call a fortran file in a gateway file in c++ and must I use inevitably a gateway file in c? If on contrary it's possible, where could the problem come from? I hope to be clear and I thank you for your help. Best regards, ? -- Benoit Goepfert -------------- next part -------------- An HTML attachment was scrubbed... URL: From jsanten at oscomp-systems.com Wed Jul 20 19:07:55 2011 From: jsanten at oscomp-systems.com (Johannes Santen) Date: Wed, 20 Jul 2011 13:07:55 -0400 Subject: using drawaxis on a log-log plot Message-ID: <00dd01cc46ff$92eca990$b8c5fcb0$@oscomp-systems.com> For some reason the axes I draw with drawaxis disappear when I use the log-log configuration of plot2d. anyone know how to fix this? -------------- next part -------------- An HTML attachment was scrubbed... URL: From Samuel.Gougeon at univ-lemans.fr Wed Jul 20 19:32:00 2011 From: Samuel.Gougeon at univ-lemans.fr (Samuel GOUGEON) Date: Wed, 20 Jul 2011 19:32:00 +0200 Subject: [scilab-Users] using drawaxis on a log-log plot In-Reply-To: <00dd01cc46ff$92eca990$b8c5fcb0$@oscomp-systems.com> References: <00dd01cc46ff$92eca990$b8c5fcb0$@oscomp-systems.com> Message-ID: <4E271110.4090801@univ-lemans.fr> ----- Message d'origine ----- De : Johannes Santen Date : 20/07/2011 19:07: > > For some reason the axes I draw with drawaxis disappear when I use the log-log > configuration of plot2d... anyone know how to fix this? > This bug has been reported here http://bugzilla.scilab.org/show_bug.cgi?id=7739 No progress since then... and no known easy work-around. Samuel -------------- next part -------------- An HTML attachment was scrubbed... URL: From Samuel.Gougeon at univ-lemans.fr Wed Jul 20 19:48:25 2011 From: Samuel.Gougeon at univ-lemans.fr (Samuel GOUGEON) Date: Wed, 20 Jul 2011 19:48:25 +0200 Subject: [scilab-Users] mfprintf In-Reply-To: <1311164701390-3185296.post@n3.nabble.com> References: <1311164701390-3185296.post@n3.nabble.com> Message-ID: <4E2714E9.8030108@univ-lemans.fr> ----- Message d'origine ----- De : computidoo Date : 20/07/2011 14:25: > hello, > I'm using the mfprintf to write an ascii file. > the data is from mat file. > i have a variable that its an array. > a=[1 1;1 1] > > and i want to have in the ascii > a > ====== > 1 1 > 1 1 > ====== > > what is the line that i have to write fprintfMat("test.txt",a,"%lg","a"+ascii(10)+"============") Samuel From goepfert.benoit at gmail.com Thu Jul 21 10:36:12 2011 From: goepfert.benoit at gmail.com (Benoit Goepfert) Date: Thu, 21 Jul 2011 17:36:12 +0900 Subject: [scilab-Users] gateway fortran cpp In-Reply-To: <1311173002.39220.YahooMailNeo@web120521.mail.ne1.yahoo.com> References: <1311173002.39220.YahooMailNeo@web120521.mail.ne1.yahoo.com> Message-ID: I figured out where the problem came from. The fortran function just needs to have the same name than the fortran file where it's implemented, otherwise Scilab can't find it. 2011/7/20 Pedro Ledoux > about Fortran for which and why are you using it? I`ve wrked as Fortran > progeamer to a geologist. > I was able to make the main program in C which could call Fortran functions > using the compilers gcc and > Open64. > > *De:* Benoit Goepfert > *Para:* users at lists.scilab.org > *Enviadas:* Quarta-feira, 20 de Julho de 2011 3:06 > *Assunto:* [scilab-Users] gateway fortran cpp > > Hello, > > I'm currently creating a toolbox that contains c++ and fortran files. As I > handle c++ objects, it's more convenient for me to use c++ files in my > gateway. Thus, for the compilation in scilab, I just need a header where i > summerize all my functions as follows : > > extern "C"{ > int func1(char *fname) > int func2(char *fname) > ... > } " > > When those functions "func1", "func2" are linked to the c++ original code, > the compilation in scilab works perfectly (builder and loader). > However, when those functions are linked to the fortran original code > (which means that in my gateway file, I call a fortran function with "F2C"), > the compilation in scilab doesn't work and i get the following error while > I'm trying to execute the loader (the builder passes) : > > addinter(libsplspcgateway_path + filesep() + 'libsplspcgateway' + > getdynlibext(), 'libsplspcgateway', list_functions); > > !--error 236 > addinter: The shared archive was not loaded: > /home/.../sci_gateway/cpp//libsplspcgateway.so: undefined symbol: BAGMRES_ > > (where BAGMRES is the fortran function that I call with F2C in my gateway > file in c++). > > As I already succeeded to use fortran functions in gateway files in c, my > question is the following : > Is it forbidden to call a fortran file in a gateway file in c++ and must I > use inevitably a gateway file in c? > If on contrary it's possible, where could the problem come from? > > I hope to be clear and I thank you for your help. > Best regards, > > -- > Benoit Goepfert > > > > -- Benoit Goepfert -------------- next part -------------- An HTML attachment was scrubbed... URL: From loic.girod at esstin.uhp-nancy.fr Thu Jul 21 10:39:53 2011 From: loic.girod at esstin.uhp-nancy.fr (=?iso-8859-1?Q?Lo=EFc_GIROD?=) Date: Thu, 21 Jul 2011 10:39:53 +0200 Subject: xs2pdf does not export graphic title Message-ID: <004501cc4781$c3f728d0$4be57a70$@esstin.uhp-nancy.fr> Hello, I use xs2pdf in a script to export a graphic window. (command : xs2pdf(gcf(),?graphic?,?landscape?). Everything works well except that it does not export the graphic title. If I use the interactive export function in the graphic window, the title is present. I didn?t find anything about this in the help. Any idea of what I did wrong ? Many thanks Best regards Lo?c -- -------------- next part -------------- An HTML attachment was scrubbed... URL: From calixte.denizet at scilab.org Thu Jul 21 10:58:42 2011 From: calixte.denizet at scilab.org (Calixte Denizet) Date: Thu, 21 Jul 2011 10:58:42 +0200 Subject: [scilab-Users] xs2pdf does not export graphic title In-Reply-To: <004501cc4781$c3f728d0$4be57a70$@esstin.uhp-nancy.fr> References: <004501cc4781$c3f728d0$4be57a70$@esstin.uhp-nancy.fr> Message-ID: <4E27EA42.60000@scilab.org> On 21/07/2011 10:39, Lo?c GIROD wrote: > > Hello, > Hello Lo?c, What is your OS and your scilab version ? Calixte > I use xs2pdf in a script to export a graphic window. (command : > xs2pdf(gcf(),'graphic','landscape'). > > Everything works well except that it does not export the graphic title. > > If I use the interactive export function in the graphic window, the > title is present. > > I didn't find anything about this in the help. > > Any idea of what I did wrong ? > > Many thanks > > Best regards > > Lo?c > > -- > -------------- next part -------------- An HTML attachment was scrubbed... URL: From fangorn813 at hotmail.com Thu Jul 21 11:25:34 2011 From: fangorn813 at hotmail.com (arnaud dujeu) Date: Thu, 21 Jul 2011 09:25:34 +0000 Subject: problem with scilab Message-ID: Hi, I've got a problem to solve a non linear differential equation, which is : y1'=A*(1-sin(y2))/(pi/2-y2)-B*y1^2y2'=y1 I'm using ode : function [Xprime]=VanDerPol(t, X) Xprime(1) = X(2) Xprime(2) = g/R*(1-sin(X(1)))/(%pi/2-X(1))-deltaP/(B*(%pi/2-X(1))) endfunction t=linspace(0,4,3000); X0=[85*%pi/180;0]; [u]=ode(X0,0,t,VanDerPol); plot(t,u(1,:)*180/%pi,'r') plot(t,R*u(2,:)) but it doesn't work. Do you know why? Best regards. -------------- next part -------------- An HTML attachment was scrubbed... URL: From ginters.buss at gmail.com Thu Jul 21 12:18:51 2011 From: ginters.buss at gmail.com (=?UTF-8?Q?Ginters_Bu=C5=A1s?=) Date: Thu, 21 Jul 2011 13:18:51 +0300 Subject: vectorizing for-loops for autoregressive or other recursive processes Message-ID: Dear all, I am inspired by the recent Allan's comment that I can vectorize for-loops. Say, I have a for-loop for AR(2) process y(t+1)=f1*y(t)+f2*y(t-1)+epsilon(t+1) with a degenerate disturbance term: f1=1.2; f2=-0.5; n=100000; c=1:n; c(2)=f1*c(1)+c(2); for i=3:n; c(i)=c(i)+f1*c(i-1)+f2*c(i-2); end Allan proposed trying f1=1.2; f2=-0.5; n=100000; b=1:n; b(2)=f1*b(1)+b(2); b(3:n) = b(3:n)+f1*b(2:n-1)+f2*b(1:n-2); but the result is different. Then, I thought I can try to use ode; say, for AR(1) process y(t+1) = a*y(t)+ epsilon(t+1) it would look like deff("yp=a_function(k,y)","yp=a*y+sigma*u(k)") y0=0; a=.9; n=100000; u=1:n; y=ode("discrete",y0,1,1:n,a_function); but it turns out that for-loop is a bit faster than this ode code. Another idea would be using Wold representation of (only stationary) AR process by rewriting the above AR(2) process as y(t+1) = ((1-f1*L - f2*L^2)^(-1))*epsilon(t+1) where (1-f1*L - f2*L^2) is a lag polynomial, L defined as Ly(t)=y(t-1) and trying to get the series representation of (1-f1*L - f2*L^2)^(-1) but I'm stuck here, and this would work only for a stationary process. Do you have any ideas/experience with rewriting for-loops for AR or other recursive processes more efficiently than the above first code? -------------- next part -------------- An HTML attachment was scrubbed... URL: From ginters.buss at gmail.com Thu Jul 21 12:23:48 2011 From: ginters.buss at gmail.com (=?UTF-8?Q?Ginters_Bu=C5=A1s?=) Date: Thu, 21 Jul 2011 13:23:48 +0300 Subject: vectorizing for-loops for autoregressive or other recursive processes In-Reply-To: References: Message-ID: On Thu, Jul 21, 2011 at 1:18 PM, Ginters Bu?s wrote: > Dear all, > > I am inspired by the recent Allan's comment that I can vectorize > for-loops. > > Say, I have a for-loop for AR(2) process > y(t+1)=f1*y(t)+f2*y(t-1)+epsilon(t+1) with a degenerate disturbance term: > > f1=1.2; f2=-0.5; > n=100000; > c=1:n; > c(2)=f1*c(1)+c(2); > for i=3:n; > c(i)=c(i)+f1*c(i-1)+f2*c(i-2); > end > > Allan proposed trying > > f1=1.2; f2=-0.5; > n=100000; > b=1:n; > b(2)=f1*b(1)+b(2); > b(3:n) = b(3:n)+f1*b(2:n-1)+f2*b(1:n-2); > > > but the result is different. Then, I thought I can try to use ode; say, > for AR(1) process y(t+1) = a*y(t)+ epsilon(t+1) it would look like > > deff("yp=a_function(k,y)","yp=a*y+sigma*u(k)") > y0=0; > a=.9; > n=100000; > u=1:n; > y=ode("discrete",y0,1,1:n,a_function); > > but it turns out that for-loop is a bit faster than this ode code. > > Another idea would be using Wold representation of (only stationary) AR > process by rewriting the above AR(2) process as > > y(t+1) = ((1-f1*L - f2*L^2)^(-1))*epsilon(t+1) > > where (1-f1*L - f2*L^2) is a lag polynomial, L defined as Ly(t)=y(t-1) > > and trying to get the series representation of (1-f1*L - f2*L^2)^(-1) but > I'm stuck here, and this would work only for a stationary process. > > Do you have any ideas/experience with rewriting for-loops for AR or other > recursive processes more efficiently than the above first code? > > > > > > > > Just clarifying that I'm using a degenerate disturbance term here for easy comparison; in real application, it would be some stochastic process. -------------- next part -------------- An HTML attachment was scrubbed... URL: From vogt at centre-cired.fr Thu Jul 21 13:18:55 2011 From: vogt at centre-cired.fr (vogt at centre-cired.fr) Date: Thu, 21 Jul 2011 13:18:55 +0200 Subject: [scilab-Users] xs2pdf does not export graphic title In-Reply-To: <004501cc4781$c3f728d0$4be57a70$@esstin.uhp-nancy.fr> References: <004501cc4781$c3f728d0$4be57a70$@esstin.uhp-nancy.fr> Message-ID: > Hello, > I use xs2pdf in a script to export a graphic window. (command : > xs2pdf(gcf(),?graphic?,?landscape?). > > Everything works well except that it does not export the graphic title. > > If I use the interactive export function in the graphic window, the title > is > present. > > I didn?t find anything about this in the help. > > > Any idea of what I did wrong ? > > Many thanks > hi as a workaround, you can use xs2eps(), and then, via unix, ps2pdf and pdfcrop. ps2pdf and pdfcrop can be found in the miktex package for instance pdfcrop will produce a pdf with your figure and nothing else (no margins, the pd won't be sized as an A4) From Serge.Steer at inria.fr Thu Jul 21 14:06:16 2011 From: Serge.Steer at inria.fr (Serge Steer) Date: Thu, 21 Jul 2011 14:06:16 +0200 Subject: [scilab-Users] problem with scilab In-Reply-To: References: Message-ID: <4E281638.1000906@inria.fr> What do you mean by "it doesn't work." error message?, unexpected results? I was not able to run it because g R DeltaP and B are undefined. Serge Steer INRIA Le 21/07/2011 11:25, arnaud dujeu a ?crit : > Hi, > > I've got a problem to solve a non linear differential equation, which is : > > y1'=A*(1-sin(y2))/(pi/2-y2)-B*y1^2 > y2'=y1 > > > I'm using ode : > > function [Xprime]=VanDerPol(t,X) > > Xprime(1) = X(2) > Xprime(2) = g/R*(1-sin(X(1)))/(%pi/2-X(1))-deltaP/(B*(%pi/2-X(1))) > > endfunction > > t=linspace(0,4,3000); X0=[85*%pi/180;0]; > [u]=ode(X0,0,t,VanDerPol); > > plot(t,u(1,:)*180/%pi,'r') > plot(t,R*u(2,:)) > > > but it doesn't work. > > Do you know why? > > Best regards. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Serge.Steer at inria.fr Thu Jul 21 14:21:20 2011 From: Serge.Steer at inria.fr (Serge Steer) Date: Thu, 21 Jul 2011 14:21:20 +0200 Subject: [scilab-Users] vectorizing for-loops for autoregressive or other recursive processes In-Reply-To: References: Message-ID: <4E2819C0.9060000@inria.fr> Le 21/07/2011 12:18, Ginters Bu?s a ?crit : > Dear all, > > I am inspired by the recent Allan's comment that I can vectorize > for-loops. > > Say, I have a for-loop for AR(2) process > y(t+1)=f1*y(t)+f2*y(t-1)+epsilon(t+1) with a degenerate disturbance term: > > f1=1.2; f2=-0.5; > n=100000; > c=1:n; > c(2)=f1*c(1)+c(2); > for i=3:n; > c(i)=c(i)+f1*c(i-1)+f2*c(i-2); > end > > Allan proposed trying > > f1=1.2; f2=-0.5; > n=100000; > b=1:n; > b(2)=f1*b(1)+b(2); > b(3:n) = b(3:n)+f1*b(2:n-1)+f2*b(1:n-2); > > > but the result is different. Then, I thought I can try to use ode; > say, for AR(1) process y(t+1) = a*y(t)+ epsilon(t+1) it would look like > > deff("yp=a_function(k,y)","yp=a*y+sigma*u(k)") > y0=0; > a=.9; > n=100000; > u=1:n; > y=ode("discrete",y0,1,1:n,a_function); > > but it turns out that for-loop is a bit faster than this ode code. > > Another idea would be using Wold representation of (only stationary) > AR process by rewriting the above AR(2) process as > > y(t+1) = ((1-f1*L - f2*L^2)^(-1))*epsilon(t+1) > > where (1-f1*L - f2*L^2) is a lag polynomial, L defined as Ly(t)=y(t-1) > > and trying to get the series representation of (1-f1*L - f2*L^2)^(-1) > but I'm stuck here, and this would work only for a stationary process. > > Do you have any ideas/experience with rewriting for-loops for AR or > other recursive processes more efficiently than the above first code? > > You can use the arsimul Scilab function or create a discrete transfer function some thing like H=syslin('d',1,poly([f2 f1 1],'z','c')) and the use flts withe ones(1,n) as an imput signal Serge Steer INRIA From loic.girod at esstin.uhp-nancy.fr Thu Jul 21 16:02:39 2011 From: loic.girod at esstin.uhp-nancy.fr (=?iso-8859-1?Q?Lo=EFc_GIROD?=) Date: Thu, 21 Jul 2011 16:02:39 +0200 Subject: x_choose after a figure : can no more interact with it Message-ID: <01aa01cc47ae$da631570$8f294050$@esstin.uhp-nancy.fr> Hello, Attached you will find a simplified example of my problem. The script draw a curve and then a choose box appear to ask to draw a new curve or to quit scilab. My problem is that when the choose box appear, I?m no longer able to interact with the figure (ie zoom, change axes properties thanks to the graph interface menu). If I close the choose box, the window I have previously selected appear but I can no longer run the script again or quit properly. Could someone help me to solve this issue Best regards Lo?c -- -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: test.sce Type: application/octet-stream Size: 327 bytes Desc: not available URL: From fangorn813 at hotmail.com Thu Jul 21 16:19:33 2011 From: fangorn813 at hotmail.com (arnaud dujeu) Date: Thu, 21 Jul 2011 14:19:33 +0000 Subject: [scilab-Users] problem with scilab In-Reply-To: <4E281638.1000906@inria.fr> References: ,<4E281638.1000906@inria.fr> Message-ID: In fact I have try several methods and no one is working, do you know if it's possible with scilab to plot alpha(t) and alpha'(t) when the differential equation is like : alpha''(t) = A*(1-sin(alpha(t)))/(pi/2-alpha(t))-B*(alpha'(t))^2/(pi/2-alpah(t)) What would be the function to use ? Date: Thu, 21 Jul 2011 14:06:16 +0200 From: Serge.Steer at inria.fr To: users at lists.scilab.org Subject: Re: [scilab-Users] problem with scilab What do you mean by "it doesn't work." error message?, unexpected results? I was not able to run it because g R DeltaP and B are undefined. Serge Steer INRIA Le 21/07/2011 11:25, arnaud dujeu a ?crit : Hi, I've got a problem to solve a non linear differential equation, which is : y1'=A*(1-sin(y2))/(pi/2-y2)-B*y1^2 y2'=y1 I'm using ode : function [Xprime]=VanDerPol(t, X) Xprime(1) = X(2) Xprime(2) = g/R*(1-sin(X(1)))/(%pi/2-X(1))-deltaP/(B*(%pi/2-X(1))) endfunction t=linspace(0,4,3000); X0=[85*%pi/180;0]; [u]=ode(X0,0,t,VanDerPol); plot(t,u(1,:)*180/%pi,'r') plot(t,R*u(2,:)) but it doesn't work. Do you know why? Best regards. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Samuel.Gougeon at univ-lemans.fr Thu Jul 21 16:38:49 2011 From: Samuel.Gougeon at univ-lemans.fr (Samuel GOUGEON) Date: Thu, 21 Jul 2011 16:38:49 +0200 Subject: [scilab-Users] x_choose after a figure : can no more interact with it In-Reply-To: <01aa01cc47ae$da631570$8f294050$@esstin.uhp-nancy.fr> References: <01aa01cc47ae$da631570$8f294050$@esstin.uhp-nancy.fr> Message-ID: <4E2839F9.1070609@univ-lemans.fr> Hello Lo?c, ----- Message d'origine ----- De : Lo?c GIROD Date : 21/07/2011 16:02: > > Hello, > > Attached you will find a simplified example of my problem. > > The script draw a curve and then a choose box appear to ask to draw a new > curve or to quit scilab. > > My problem is that when the choose box appear, I'm no longer able to interact > with the figure (ie zoom, change axes properties... thanks to the graph > interface menu). > This thread may interest you: http://bugzilla.scilab.org/show_bug.cgi?id=7701 > If I close the choose box, the window I have previously selected appear but I > can no longer run the script again or quit properly. > May be because your while is still running? Regards Samuel -------------- next part -------------- An HTML attachment was scrubbed... URL: From ginters.buss at gmail.com Thu Jul 21 16:55:43 2011 From: ginters.buss at gmail.com (=?UTF-8?Q?Ginters_Bu=C5=A1s?=) Date: Thu, 21 Jul 2011 17:55:43 +0300 Subject: [scilab-Users] vectorizing for-loops for autoregressive or other recursive processes In-Reply-To: <57bd7ebb0ee04a58888f78d085de9915@CAS1.rtupasts.lan> References: <57bd7ebb0ee04a58888f78d085de9915@CAS1.rtupasts.lan> Message-ID: On Thu, Jul 21, 2011 at 3:21 PM, Serge Steer wrote: > Le 21/07/2011 12:18, Ginters Bu?s a ?crit : > > Dear all, > > > > I am inspired by the recent Allan's comment that I can vectorize > > for-loops. > > > > Say, I have a for-loop for AR(2) process > > y(t+1)=f1*y(t)+f2*y(t-1)+epsilon(t+1) with a degenerate disturbance term: > > > > f1=1.2; f2=-0.5; > > n=100000; > > c=1:n; > > c(2)=f1*c(1)+c(2); > > for i=3:n; > > c(i)=c(i)+f1*c(i-1)+f2*c(i-2); > > end > > > > Allan proposed trying > > > > f1=1.2; f2=-0.5; > > n=100000; > > b=1:n; > > b(2)=f1*b(1)+b(2); > > b(3:n) = b(3:n)+f1*b(2:n-1)+f2*b(1:n-2); > > > > > > but the result is different. Then, I thought I can try to use ode; > > say, for AR(1) process y(t+1) = a*y(t)+ epsilon(t+1) it would look like > > > > deff("yp=a_function(k,y)","yp=a*y+sigma*u(k)") > > y0=0; > > a=.9; > > n=100000; > > u=1:n; > > y=ode("discrete",y0,1,1:n,a_function); > > > > but it turns out that for-loop is a bit faster than this ode code. > > > > Another idea would be using Wold representation of (only stationary) > > AR process by rewriting the above AR(2) process as > > > > y(t+1) = ((1-f1*L - f2*L^2)^(-1))*epsilon(t+1) > > > > where (1-f1*L - f2*L^2) is a lag polynomial, L defined as Ly(t)=y(t-1) > > > > and trying to get the series representation of (1-f1*L - f2*L^2)^(-1) > > but I'm stuck here, and this would work only for a stationary process. > > > > Do you have any ideas/experience with rewriting for-loops for AR or > > other recursive processes more efficiently than the above first code? > > > > > You can use the arsimul Scilab function or create a discrete transfer > function some thing like > > H=syslin('d',1,poly([f2 f1 1],'z','c')) > and the use flts withe ones(1,n) as an imput signal > > Serge Steer > INRIA > > > > ok, arsimul and armac look quite bulky for vector size 1e5, and the help is not that helpful without showing the model; it is quite difficult to understand what is what without seeing the model; A different thing is about syslin - it appears I like this stuff, but I can not get the wanted result, may be because I do not understand what I am doing. Particularly, if I write (a stationary) AR(2) model as x_t =((1-f1*L - f2*L^2)^(-1))*epsilon_t, then the polynomial is not H=syslin('d',1,poly([f2 f1 1],'z','c')) but is H=syslin('d',1,poly([1 -f1 -f2],'z','c')). Also, in the example above, I used an input signal as c=1:n, not c=ones(1,n), so shouldn't I use y=flts(1:n,H); not y=flts(ones(1,n),H);? However, trying various combinations of the former and the latter, I cannot replicate this: b=1:n; b(2)=f1*b(1)+b(2); for i=3:n; b(i)=b(i)+f1*b(i-1)+f2*b(i-2); end may be this is because of initial undeclared conditions b_0=0; b_{-1}=0 in the flts command; therefore, I tried to compare it with b=1:n; b(1)=0; b(2)=0; for i=3:n; b(i)=b(i)+f1*b(i-1)+f2*b(i-2); end Still different. No wonder this is the case because have little clue what I am doing. -------------- next part -------------- An HTML attachment was scrubbed... URL: From loic.girod at esstin.uhp-nancy.fr Thu Jul 21 17:14:26 2011 From: loic.girod at esstin.uhp-nancy.fr (=?iso-8859-1?Q?Lo=EFc_GIROD?=) Date: Thu, 21 Jul 2011 17:14:26 +0200 Subject: [scilab-Users] x_choose after a figure : can no more interact with it In-Reply-To: <4E2839F9.1070609@univ-lemans.fr> References: <01aa01cc47ae$da631570$8f294050$@esstin.uhp-nancy.fr> <4E2839F9.1070609@univ-lemans.fr> Message-ID: <020301cc47b8$e2003240$a60096c0$@esstin.uhp-nancy.fr> Hello Samuel, The while loop allow to execute the script again so I think it?s normal it?s still running, no ? Regarding the thread you quote, was the feature implemented ? Thanks Lo?c -- De : Samuel GOUGEON [mailto:Samuel.Gougeon at univ-lemans.fr] Envoy? : jeudi 21 juillet 2011 16:39 ? : users at lists.scilab.org Objet : Re: [scilab-Users] x_choose after a figure : can no more interact with it Hello Lo?c, ----- Message d'origine ----- De : Lo?c GIROD Date : 21/07/2011 16:02: Hello, Attached you will find a simplified example of my problem. The script draw a curve and then a choose box appear to ask to draw a new curve or to quit scilab. My problem is that when the choose box appear, I?m no longer able to interact with the figure (ie zoom, change axes properties thanks to the graph interface menu). This thread may interest you: http://bugzilla.scilab.org/show_bug.cgi?id=7701 If I close the choose box, the window I have previously selected appear but I can no longer run the script again or quit properly. May be because your while is still running? Regards Samuel -------------- next part -------------- An HTML attachment was scrubbed... URL: From Samuel.Gougeon at univ-lemans.fr Thu Jul 21 17:22:01 2011 From: Samuel.Gougeon at univ-lemans.fr (Samuel GOUGEON) Date: Thu, 21 Jul 2011 17:22:01 +0200 Subject: [scilab-Users] x_choose after a figure : can no more interact with it In-Reply-To: <020301cc47b8$e2003240$a60096c0$@esstin.uhp-nancy.fr> References: <01aa01cc47ae$da631570$8f294050$@esstin.uhp-nancy.fr> <4E2839F9.1070609@univ-lemans.fr> <020301cc47b8$e2003240$a60096c0$@esstin.uhp-nancy.fr> Message-ID: <4E284419.8040601@univ-lemans.fr> ----- Message d'origine ----- De : Lo?c GIROD Date : 21/07/2011 17:14: > > Hello Samuel, > > The while loop allow to execute the script again so I think it's normal it's > still running, no ? > Likely yes. But with Scilab 5.3.1 i did not succeed in interrupting it without killing Scilab... this is the issue. > Regarding the thread you quote, was the feature implemented ? > No, finally i did not post any whish to ask for its implementation. Samuel -------------- next part -------------- An HTML attachment was scrubbed... URL: From denis.crete at thalesgroup.com Thu Jul 21 17:45:18 2011 From: denis.crete at thalesgroup.com (CRETE Denis) Date: Thu, 21 Jul 2011 17:45:18 +0200 Subject: [scilab-Users] problem with scilab In-Reply-To: References: Message-ID: <7264_1311263136_4E2849A0_7264_17352_1_908CBC9017354841B2F32BBEC70A05A101C356CAC0A6@THSONEA01CMS01P.one.grp> Hello, I changed g/R to gsR and deltaP/B to deltaPsB=1. Attempts with gsR=1 ...10 are solved correctly by Scilab. An oscillatory behaviour is found for g/R=10, and perhaps for g/R > deltaP/B (?). Denis De : arnaud dujeu [mailto:fangorn813 at hotmail.com] Envoy? : jeudi 21 juillet 2011 11:26 ? : users at lists.scilab.org Objet : [scilab-Users] problem with scilab Hi, I've got a problem to solve a non linear differential equation, which is : y1'=A*(1-sin(y2))/(pi/2-y2)-B*y1^2 y2'=y1 I'm using ode : function [Xprime]=VanDerPol(t, X) Xprime(1) = X(2) Xprime(2) = g/R*(1-sin(X(1)))/(%pi/2-X(1))-deltaP/(B*(%pi/2-X(1))) endfunction t=linspace(0,4,3000); X0=[85*%pi/180;0]; [u]=ode(X0,0,t,VanDerPol); plot(t,u(1,:)*180/%pi,'r') plot(t,R*u(2,:)) but it doesn't work. Do you know why? Best regards. -------------- next part -------------- An HTML attachment was scrubbed... URL: From sylvestre.ledru at scilab.org Thu Jul 21 18:28:35 2011 From: sylvestre.ledru at scilab.org (Sylvestre Ledru) Date: Thu, 21 Jul 2011 18:28:35 +0200 Subject: [scilab-Users] Cannot see the figure after using plot() In-Reply-To: <4E26CFB2.7020108@scilab.org> References: <4E26CFB2.7020108@scilab.org> Message-ID: <1311265715.12662.8.camel@losinj.inria.fr> Or try: system_setproperty("jogl.gljpanel.nohw",""); S Le mercredi 20 juillet 2011 ? 14:53 +0200, Calixte Denizet a ?crit : > Hi, > > Try to update the driver of your graphic card. > > Regards, > > Calixte > > On 19/07/2011 21:32, Ann YC Liu wrote: > > Hello, > > > > I installed scilab 5.2.3 on window vista with service pack2. > > I tried to use plot( ) to plot figure but nothing is shown on the > > graphic window. > > (please see the copy of my screen below) > > > > I cannot figure out what's going on, could you help me for this? > > > > the following is what I typed to plot the figure...nothing special. > > > > t = 0:%pi/100:2*%pi; > > y = sin(t); > > plot(t,y); > > > > Best Regard > > Liu > > scilab problem.jpg > From herpinono at yahoo.fr Fri Jul 22 00:43:08 2011 From: herpinono at yahoo.fr (Herpin) Date: Thu, 21 Jul 2011 15:43:08 -0700 (PDT) Subject: genetic Algorithm- need a Help Message-ID: <1311288188022-3189900.post@n3.nabble.com> deff('[w]=f(x,y)', 'w = sin(x)*cos(y)') x= [0:0.1:15]; y=[0:0.1:15];z=feval(x,y,f); contour(x,y,z,15) xtitle('contour plot of w=sin(x)*cos(y)','x','y') Hallo everyone, my name is Herpin. I want to generate on the Graphic of this code at the head a genetic Algorithm. The Graphic is a Scilab plot of contours. I consider that this Graphic is like a Landscape of mountains and each mountain represents an independent group of contour with different color. In each group of contour, the lowest circle represents the peak of a Mountain. I want to generate in the graphic genetic Algorithm beginning with three single points which locate at different distance each other. Each single Point represents the first parent-generation. Each point (parent) can produce five children with represent the second generation. From this second generation, the child-point which near of the peak of a mountain has a right to produce another five children while another points of this second generation disappear. The process is continuing until the peak of a mountain is attained. I want to use for this Algorithm just selection and mutation operator. Can someone help me? You are free to add Information that you know it will be making a sense; like mutation probability or another parameter. Best Regards Herpin. -- View this message in context: http://mailinglists.scilab.org/genetic-Algorithm-need-a-Help-tp3189900p3189900.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From denis.crete at thalesgroup.com Fri Jul 22 10:06:27 2011 From: denis.crete at thalesgroup.com (CRETE Denis) Date: Fri, 22 Jul 2011 10:06:27 +0200 Subject: [scilab-Users] problem with scilab In-Reply-To: References: ,<4E281638.1000906@inria.fr> Message-ID: <29206_1311322052_4E292FC4_29206_6562_1_908CBC9017354841B2F32BBEC70A05A101C356CAC5DA@THSONEA01CMS01P.one.grp> Hello, This is what I meant when I suggested to remove the singularity, and seems to be close to what you want; and it runs smoothly with Scilab 5.3.2 for a slightly larger domain of parameters (limited by deltaPsB >~0.943, for gsR=10) than without singularity removal. function [Xprime]=VanDerPol(t, X) if X(1)== %pi/2 then singularity=0; else singularity=(1-sin(X(1)))/(%pi/2-X(1)); end; Xprime(1) = X(2) Xprime(2) = gsR*singularity -deltaPsB*X(2)^2/(%pi/2-X(1)) endfunction gsR=10; deltaPsB=1; t=linspace(0,10,10000); X0=[85*%pi/180;0]; [u]=ode(X0,0,t,VanDerPol); xset('window',0); plot(t,u(1,:)*180/%pi,'r') xset('window',2); // plot(t,R*u(2,:)) plot(t,u(2,:)) This suggests that the 2nd singularity (last term scaled with deltaP) is the reason for the problem. Furthermore, I don't understand the physical meaning of this term W'?/W... In addition, it behaves as one expects: as the motion is damped by the second term, is goes slowly (if deltaPsB is large) towards X=%pi/2. I doubt that with such an equation you can find an oscillatory behaviour (which is what the Van der Pol equation should describe, shouldn't it ?-) Denis De : arnaud dujeu [mailto:fangorn813 at hotmail.com] Envoy? : jeudi 21 juillet 2011 16:20 ? : users at lists.scilab.org Objet : RE: [scilab-Users] problem with scilab In fact I have try several methods and no one is working, do you know if it's possible with scilab to plot alpha(t) and alpha'(t) when the differential equation is like : alpha''(t) = A*(1-sin(alpha(t)))/(pi/2-alpha(t))-B*(alpha'(t))^2/(pi/2-alpah(t)) What would be the function to use ? ________________________________ Date: Thu, 21 Jul 2011 14:06:16 +0200 From: Serge.Steer at inria.fr To: users at lists.scilab.org Subject: Re: [scilab-Users] problem with scilab What do you mean by "it doesn't work." error message?, unexpected results? I was not able to run it because g R DeltaP and B are undefined. Serge Steer INRIA Le 21/07/2011 11:25, arnaud dujeu a ?crit : Hi, I've got a problem to solve a non linear differential equation, which is : y1'=A*(1-sin(y2))/(pi/2-y2)-B*y1^2 y2'=y1 I'm using ode : function [Xprime]=VanDerPol(t, X) Xprime(1) = X(2) Xprime(2) = g/R*(1-sin(X(1)))/(%pi/2-X(1))-deltaP/(B*(%pi/2-X(1))) endfunction t=linspace(0,4,3000); X0=[85*%pi/180;0]; [u]=ode(X0,0,t,VanDerPol); plot(t,u(1,:)*180/%pi,'r') plot(t,R*u(2,:)) but it doesn't work. Do you know why? Best regards. -------------- next part -------------- An HTML attachment was scrubbed... URL: From communication at scilab.org Fri Jul 22 12:08:07 2011 From: communication at scilab.org (Scilab Communication) Date: Fri, 22 Jul 2011 12:08:07 +0200 Subject: Release of Scilab 5.3.3 Message-ID: <4E294C07.7050409@scilab.org> Dear Scilab Users, The Scilab R&D Team is pleased to announce the release of Scilab 5.3.3. This version corrects two serious bugs with the Japanese and Polish localizations and Mac OS X 10.6.8. Download and information can be found at: http://www.scilab.org/products/scilab/download Best Regards ----------------------------------------------- The Scilab Consortium R&D Team ----------------------------------------------- Digiteo Domaine de Voluceau Rocquencourt - B.P. 105 78153 Le Chesnay Cedex - France From sylvestre.ledru at scilab.org Fri Jul 22 08:46:19 2011 From: sylvestre.ledru at scilab.org (Sylvestre Ledru) Date: Fri, 22 Jul 2011 08:46:19 +0200 Subject: [scilab-Users] scilab graphics and intel (linux) In-Reply-To: <1310578127.2850.7.camel@debian.ufabc.edu.br> References: <1310577346.2850.6.camel@debian.ufabc.edu.br> <1310578127.2850.7.camel@debian.ufabc.edu.br> Message-ID: <1311317179.12084.10.camel@losinj.inria.fr> Thanks Jonathan. Rodrigo, most of the graphic issues (most of them are coming from OpenGL driver issues) should be fixed with Scilab 5.4.0. Sylvestre Le mercredi 13 juillet 2011 ? 14:28 -0300, Rodrigo Fresneda a ?crit : > Thanks for the workaround, Jonathan. Is this fixed in newer > versions of Scilab? > > On Wed, 2011-07-13 at 14:15 -0300, Jonathan Blanchard wrote: > > On Wed, Jul 13, 2011 at 2:15 PM, Rodrigo Fresneda wrote: > > > Dear fellow scilab users, > > > > > > is there a solution for scilab's > > > graphics rendering under linux with > > > an intel graphics cards and direct > > > rendering enabled? > > > I am running scilab 5.2.2 (debian package) and > > > the stock debian kernel 2.6.32-5-amd64 on debian stable. > > > > > > best, > > > rodrigo. > > > > > > > > > > I generally have to disable direct rendering when using Scilab. This > > can be done by setting LIBGL_ALWAYS_INDIRECT to 1 before starting > > Scilab. I'm not aware of the issue with intel and DRI under Linux but > > it might help. > > > > Jonathan Blanchard > > From satish.annigeri at gmail.com Sun Jul 24 05:06:30 2011 From: satish.annigeri at gmail.com (satish@bvb.edu) Date: Sat, 23 Jul 2011 20:06:30 -0700 (PDT) Subject: Scilab 5.3.2. ATOMS module Metanet 0.3-2 installation error Message-ID: <1311476790808-3194602.post@n3.nabble.com> Help required with problems I am facing while installing metanet 0.3-2 module from ATOMS. Operating system: Microsoft Windows 7 (32 bit) Scilab version: Scilab 5.3.2 I am able oto install other modules using ATOMS, but get an error while installing metanet 0.3-2. Here is the sequence of events: Step 1: When I type the following command, message says that module installation is successful -->atomsInstall("metanet") metanet (0.3-2) will be installed in the 'user' section Installing metanet (0.3-2) ... success ans = !metanet 0.3-2 user SCIHOME\atoms\metanet\0.3-2 I ! Step 2 When I restart Scilab, I get the following error message: Start Metanet Load macros Load gateways atomsLoad: An error occurred while loading 'metanet-0.3-2': link: The shared archive was not loaded: The filename, directory name, or volume label syntax is incorrect. Additional Info: -->atomsGetInstalled ans = !metanet 0.3-2 user SCIHOME\atoms\metanet\0.3-2 I ! -->atomsIsLoaded("metanet") ans = F Can you help me solve this problem? Thanks in advance. Satish Annigeri -- View this message in context: http://mailinglists.scilab.org/Scilab-5-3-2-ATOMS-module-Metanet-0-3-2-installation-error-tp3194602p3194602.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From piotr.plaskowicki at interia.pl Mon Jul 25 11:20:02 2011 From: piotr.plaskowicki at interia.pl (Piotr =?UTF-8?b?V2nFm25pZXdza2k=?=) Date: Mon, 25 Jul 2011 11:20:02 +0200 Subject: Fwd: Problems with SciLab 5.3.3 in Win7prof 64bit In-Reply-To: <4E182D57.4060907@ppcs.pl> References: <4E182D57.4060907@ppcs.pl> Message-ID: <4E2D3542.4030608@interia.pl> Dears, With pleasure I try the new version of scilab. Unfortunately it is still not working with Win7 professional x64. Actually scilab is working but XCOS not (see attachment). In new version SciNotes starts without exception. This problem is solved by you :) So I continue using you software in XPMode and wait for new, running with win7, version. Additional problem: since SciLab 5.0 there is not so easy to make connection between blocks in xcos. The area around the input/output witch make connector active (green) is in my opinion to small. Best regards Piotr Wi?niewski ------ Wiadomo?? oryginalna ------ Temat: Problems with SciLab 5.3.2 in Win7 64bit Data: Sat, 09 Jul 2011 12:28:39 +0200 Nadawca: Piotr Wi?niewski Adresat: users at lists.scilab.org Dears, I get Scilab from your page. Installation I have done normally (as before on XP). Program is working but not fully. When I open SciNotes following comes. SciNotes works even that. The method createMenu in org.scilab.modules.scinotes.actions.LineNumbersAction threw an exception : java.lang.reflect.InvocationTargetException at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.scilab.modules.scinotes.SciNotesGUI.getMenuItem(Unknown Source) at org.scilab.modules.scinotes.SciNotesGUI.getMenu(Unknown Source) at org.scilab.modules.scinotes.SciNotesGUI.generateMenuBar(Unknown Source) at org.scilab.modules.scinotes.SciNotesGUI.init(Unknown Source) at org.scilab.modules.scinotes.SciNotes.createEditor(Unknown Source) at org.scilab.modules.scinotes.SciNotes.launchSciNotes(Unknown Source) at org.scilab.modules.scinotes.SciNotes$2.run(Unknown Source) at java.awt.event.InvocationEvent.dispatch(Unknown Source) at java.awt.EventQueue.dispatchEvent(Unknown Source) at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.run(Unknown Source) Caused by: java.util.NoSuchElementException at java.util.StringTokenizer.nextToken(Unknown Source) at org.scilab.modules.scinotes.actions.LineNumbersAction.createMenu(Unknown Source) ... 19 more The biggest problem is with Xcos. It doesn't work at all. When I try to start simulation following comes: ncsa.hdf.hdf5lib.exceptions.HDF5LibraryException ncsa.hdf.hdf5lib.exceptions.HDF5LibraryException at ncsa.hdf.hdf5lib.H5._H5Fcreate(Native Method) at ncsa.hdf.hdf5lib.H5.H5Fcreate(H5.java:1348) at org.scilab.modules.hdf5.write.H5Write.createFile(Unknown Source) at org.scilab.modules.xcos.io.scicos.H5RWHandler.writeDiagram(Unknown Source) at org.scilab.modules.xcos.graph.XcosDiagram.dumpToHdf5File(Unknown Source) at org.scilab.modules.xcos.actions.StartAction.createSimulationCommand(Unknown Source) at org.scilab.modules.xcos.actions.StartAction.actionPerformed(Unknown Source) at javax.swing.AbstractButton.fireActionPerformed(Unknown Source) at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source) at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source) at javax.swing.DefaultButtonModel.setPressed(Unknown Source) at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source) at java.awt.AWTEventMulticaster.mouseReleased(Unknown Source) at java.awt.Component.processMouseEvent(Unknown Source) at javax.swing.JComponent.processMouseEvent(Unknown Source) at java.awt.Component.processEvent(Unknown Source) at java.awt.Container.processEvent(Unknown Source) at java.awt.Component.dispatchEventImpl(Unknown Source) at java.awt.Container.dispatchEventImpl(Unknown Source) at java.awt.Component.dispatchEvent(Unknown Source) at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source) at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source) at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source) at java.awt.Container.dispatchEventImpl(Unknown Source) at java.awt.Window.dispatchEventImpl(Unknown Source) at java.awt.Component.dispatchEvent(Unknown Source) at java.awt.EventQueue.dispatchEvent(Unknown Source) at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.run(Unknown Source) ncsa.hdf.hdf5lib.exceptions.HDF5LibraryException ncsa.hdf.hdf5lib.exceptions.HDF5LibraryException at ncsa.hdf.hdf5lib.H5._H5Gcreate(Native Method) at ncsa.hdf.hdf5lib.H5.H5Gcreate(H5.java:1546) at org.scilab.modules.hdf5.write.H5WriteScilabCommonList.writeInDataSet(Unknown Source) at org.scilab.modules.hdf5.write.H5WriteScilabMList.writeInDataSet(Unknown Source) at org.scilab.modules.hdf5.write.H5Write.writeInDataSet(Unknown Source) at org.scilab.modules.xcos.io.scicos.H5RWHandler.writeDiagram(Unknown Source) at org.scilab.modules.xcos.graph.XcosDiagram.dumpToHdf5File(Unknown Source) at org.scilab.modules.xcos.actions.StartAction.createSimulationCommand(Unknown Source) at org.scilab.modules.xcos.actions.StartAction.actionPerformed(Unknown Source) at javax.swing.AbstractButton.fireActionPerformed(Unknown Source) at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source) at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source) at javax.swing.DefaultButtonModel.setPressed(Unknown Source) at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source) at java.awt.AWTEventMulticaster.mouseReleased(Unknown Source) at java.awt.Component.processMouseEvent(Unknown Source) at javax.swing.JComponent.processMouseEvent(Unknown Source) at java.awt.Component.processEvent(Unknown Source) at java.awt.Container.processEvent(Unknown Source) at java.awt.Component.dispatchEventImpl(Unknown Source) at java.awt.Container.dispatchEventImpl(Unknown Source) at java.awt.Component.dispatchEvent(Unknown Source) at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source) at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source) at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source) at java.awt.Container.dispatchEventImpl(Unknown Source) at java.awt.Window.dispatchEventImpl(Unknown Source) at java.awt.Component.dispatchEvent(Unknown Source) at java.awt.EventQueue.dispatchEvent(Unknown Source) at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.run(Unknown Source) import_from_hdf5: Unable to open file: C:\Users\Piotr Wi?niewski\AppData\Local\Temp\SCI_TMP_478 8_\xcos8580468894431797456.h5 The simulation file was done with SciLab v5.3.2 32bit on WinXP. It was working perfectly until now. What is wrong? What can I do to be able to use that again? I cannot build new models because I cannot edit parameters too. Please give me some advice what to do? With kind regards Piotr Wi?niewski -- PPCS Piotr Wi?niewski Komor?w 20A 58-100 ?widnica Poland tel.: +48 608 053 483 ---------------------------------------------------------------- Dom marzen - kup lub wynajmij taniej niz myslisz! Szukaj >> http://linkint.pl/f29e5 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/png Size: 404466 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: XCOS win7prof x64.png Type: image/png Size: 179539 bytes Desc: not available URL: From clement.david at scilab.org Mon Jul 25 11:39:03 2011 From: clement.david at scilab.org (=?ISO-8859-1?Q?Cl=E9ment?= David) Date: Mon, 25 Jul 2011 11:39:03 +0200 Subject: [scilab-Users] Problems with SciLab 5.3.2 in Win7 64bit In-Reply-To: <4E182D57.4060907@ppcs.pl> References: <4E182D57.4060907@ppcs.pl> Message-ID: <1311586743.2173.20.camel@pinarellu.inria.fr> Hello, For the Xcos bug, it has been reported for a while (I apologized for that) and I will try to workaround it for the next release [1]. [1]: http://bugzilla.scilab.org/show_bug.cgi?id=9501 Le samedi 09 juillet 2011 ? 12:28 +0200, Piotr Wi?niewski a ?crit : > Dears, > I get Scilab from your page. Installation I have done normally (as > before on XP). Program is working but not fully. > > When I open SciNotes following comes. SciNotes works even that. > > The method createMenu in > org.scilab.modules.scinotes.actions.LineNumbersAction threw an > exception : > java.lang.reflect.InvocationTargetException > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) > at java.lang.reflect.Method.invoke(Unknown Source) > at org.scilab.modules.scinotes.SciNotesGUI.getMenuItem(Unknown > Source) > at org.scilab.modules.scinotes.SciNotesGUI.getMenu(Unknown Source) > at org.scilab.modules.scinotes.SciNotesGUI.generateMenuBar(Unknown > Source) > at org.scilab.modules.scinotes.SciNotesGUI.init(Unknown Source) > at org.scilab.modules.scinotes.SciNotes.createEditor(Unknown > Source) > at org.scilab.modules.scinotes.SciNotes.launchSciNotes(Unknown > Source) > at org.scilab.modules.scinotes.SciNotes$2.run(Unknown Source) > at java.awt.event.InvocationEvent.dispatch(Unknown Source) > at java.awt.EventQueue.dispatchEvent(Unknown Source) > at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown > Source) > at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown > Source) > at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown > Source) > at java.awt.EventDispatchThread.pumpEvents(Unknown Source) > at java.awt.EventDispatchThread.pumpEvents(Unknown Source) > at java.awt.EventDispatchThread.run(Unknown Source) > Caused by: java.util.NoSuchElementException > at java.util.StringTokenizer.nextToken(Unknown Source) > at > org.scilab.modules.scinotes.actions.LineNumbersAction.createMenu(Unknown Source) > ... 19 more > > The biggest problem is with Xcos. It doesn't work at all. > > When I try to start simulation following comes: > > ncsa.hdf.hdf5lib.exceptions.HDF5LibraryException > ncsa.hdf.hdf5lib.exceptions.HDF5LibraryException > at ncsa.hdf.hdf5lib.H5._H5Fcreate(Native Method) > at ncsa.hdf.hdf5lib.H5.H5Fcreate(H5.java:1348) > at org.scilab.modules.hdf5.write.H5Write.createFile(Unknown > Source) > at > org.scilab.modules.xcos.io.scicos.H5RWHandler.writeDiagram(Unknown > Source) > at > org.scilab.modules.xcos.graph.XcosDiagram.dumpToHdf5File(Unknown > Source) > at > org.scilab.modules.xcos.actions.StartAction.createSimulationCommand(Unknown Source) > at > org.scilab.modules.xcos.actions.StartAction.actionPerformed(Unknown > Source) > at javax.swing.AbstractButton.fireActionPerformed(Unknown Source) > at javax.swing.AbstractButton$Handler.actionPerformed(Unknown > Source) > at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown > Source) > at javax.swing.DefaultButtonModel.setPressed(Unknown Source) > at > javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown > Source) > at java.awt.AWTEventMulticaster.mouseReleased(Unknown Source) > at java.awt.Component.processMouseEvent(Unknown Source) > at javax.swing.JComponent.processMouseEvent(Unknown Source) > at java.awt.Component.processEvent(Unknown Source) > at java.awt.Container.processEvent(Unknown Source) > at java.awt.Component.dispatchEventImpl(Unknown Source) > at java.awt.Container.dispatchEventImpl(Unknown Source) > at java.awt.Component.dispatchEvent(Unknown Source) > at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown > Source) > at java.awt.LightweightDispatcher.processMouseEvent(Unknown > Source) > at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source) > at java.awt.Container.dispatchEventImpl(Unknown Source) > at java.awt.Window.dispatchEventImpl(Unknown Source) > at java.awt.Component.dispatchEvent(Unknown Source) > at java.awt.EventQueue.dispatchEvent(Unknown Source) > at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown > Source) > at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown > Source) > at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown > Source) > at java.awt.EventDispatchThread.pumpEvents(Unknown Source) > at java.awt.EventDispatchThread.pumpEvents(Unknown Source) > at java.awt.EventDispatchThread.run(Unknown Source) > ncsa.hdf.hdf5lib.exceptions.HDF5LibraryException > ncsa.hdf.hdf5lib.exceptions.HDF5LibraryException > at ncsa.hdf.hdf5lib.H5._H5Gcreate(Native Method) > at ncsa.hdf.hdf5lib.H5.H5Gcreate(H5.java:1546) > at > org.scilab.modules.hdf5.write.H5WriteScilabCommonList.writeInDataSet(Unknown Source) > at > org.scilab.modules.hdf5.write.H5WriteScilabMList.writeInDataSet(Unknown Source) > at org.scilab.modules.hdf5.write.H5Write.writeInDataSet(Unknown > Source) > at > org.scilab.modules.xcos.io.scicos.H5RWHandler.writeDiagram(Unknown > Source) > at > org.scilab.modules.xcos.graph.XcosDiagram.dumpToHdf5File(Unknown > Source) > at > org.scilab.modules.xcos.actions.StartAction.createSimulationCommand(Unknown Source) > at > org.scilab.modules.xcos.actions.StartAction.actionPerformed(Unknown > Source) > at javax.swing.AbstractButton.fireActionPerformed(Unknown Source) > at javax.swing.AbstractButton$Handler.actionPerformed(Unknown > Source) > at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown > Source) > at javax.swing.DefaultButtonModel.setPressed(Unknown Source) > at > javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown > Source) > at java.awt.AWTEventMulticaster.mouseReleased(Unknown Source) > at java.awt.Component.processMouseEvent(Unknown Source) > at javax.swing.JComponent.processMouseEvent(Unknown Source) > at java.awt.Component.processEvent(Unknown Source) > at java.awt.Container.processEvent(Unknown Source) > at java.awt.Component.dispatchEventImpl(Unknown Source) > at java.awt.Container.dispatchEventImpl(Unknown Source) > at java.awt.Component.dispatchEvent(Unknown Source) > at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown > Source) > at java.awt.LightweightDispatcher.processMouseEvent(Unknown > Source) > at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source) > at java.awt.Container.dispatchEventImpl(Unknown Source) > at java.awt.Window.dispatchEventImpl(Unknown Source) > at java.awt.Component.dispatchEvent(Unknown Source) > at java.awt.EventQueue.dispatchEvent(Unknown Source) > at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown > Source) > at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown > Source) > at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown > Source) > at java.awt.EventDispatchThread.pumpEvents(Unknown Source) > at java.awt.EventDispatchThread.pumpEvents(Unknown Source) > at java.awt.EventDispatchThread.run(Unknown Source) > > import_from_hdf5: Unable to open file: C:\Users\Piotr Wi?niewski > \AppData\Local\Temp\SCI_TMP_478 > 8_ > \xcos8580468894431797456.h5 > > The simulation file was done with SciLab v5.3.2 32bit on WinXP. It was > working perfectly until now. > > What is wrong? What can I do to be able to use that again? > > I cannot build new models because I cannot edit parameters too. > > > > > Please give me some advice what to do? > > With kind regards > Piotr Wi?niewski > -- > PPCS Piotr Wi?niewski > Komor?w 20A > 58-100 ?widnica > Poland > > tel.: +48 608 053 483 -- Cl?ment David From piotr.plaskowicki at interia.pl Mon Jul 25 16:10:40 2011 From: piotr.plaskowicki at interia.pl (Piotr =?UTF-8?b?V2nFm25pZXdza2k=?=) Date: Mon, 25 Jul 2011 16:10:40 +0200 Subject: Fwd: Fwd: Problems with SciLab 5.3.3 in Win7prof 64bit In-Reply-To: <4E2D3542.4030608@interia.pl> References: <4E2D3542.4030608@interia.pl> Message-ID: <4E2D7960.2070404@interia.pl> Dears, Problem is coming from user name. If I use the user name without country specific characters problem is not existing. Regs Piotr Wi?niewski ------ Wiadomo?? oryginalna ------ Temat: Fwd: Problems with SciLab 5.3.3 in Win7prof 64bit Data: Mon, 25 Jul 2011 11:20:02 +0200 Nadawca: Piotr Wi?niewski Adresat: users at lists.scilab.org Dears, With pleasure I try the new version of scilab. Unfortunately it is still not working with Win7 professional x64. Actually scilab is working but XCOS not (see attachment). In new version SciNotes starts without exception. This problem is solved by you :) So I continue using you software in XPMode and wait for new, running with win7, version. Additional problem: since SciLab 5.0 there is not so easy to make connection between blocks in xcos. The area around the input/output witch make connector active (green) is in my opinion to small. Best regards Piotr Wi?niewski ------ Wiadomo?? oryginalna ------ Temat: Problems with SciLab 5.3.2 in Win7 64bit Data: Sat, 09 Jul 2011 12:28:39 +0200 Nadawca: Piotr Wi?niewski Adresat: users at lists.scilab.org Dears, I get Scilab from your page. Installation I have done normally (as before on XP). Program is working but not fully. When I open SciNotes following comes. SciNotes works even that. The method createMenu in org.scilab.modules.scinotes.actions.LineNumbersAction threw an exception : java.lang.reflect.InvocationTargetException at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.scilab.modules.scinotes.SciNotesGUI.getMenuItem(Unknown Source) at org.scilab.modules.scinotes.SciNotesGUI.getMenu(Unknown Source) at org.scilab.modules.scinotes.SciNotesGUI.generateMenuBar(Unknown Source) at org.scilab.modules.scinotes.SciNotesGUI.init(Unknown Source) at org.scilab.modules.scinotes.SciNotes.createEditor(Unknown Source) at org.scilab.modules.scinotes.SciNotes.launchSciNotes(Unknown Source) at org.scilab.modules.scinotes.SciNotes$2.run(Unknown Source) at java.awt.event.InvocationEvent.dispatch(Unknown Source) at java.awt.EventQueue.dispatchEvent(Unknown Source) at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.run(Unknown Source) Caused by: java.util.NoSuchElementException at java.util.StringTokenizer.nextToken(Unknown Source) at org.scilab.modules.scinotes.actions.LineNumbersAction.createMenu(Unknown Source) ... 19 more The biggest problem is with Xcos. It doesn't work at all. When I try to start simulation following comes: ncsa.hdf.hdf5lib.exceptions.HDF5LibraryException ncsa.hdf.hdf5lib.exceptions.HDF5LibraryException at ncsa.hdf.hdf5lib.H5._H5Fcreate(Native Method) at ncsa.hdf.hdf5lib.H5.H5Fcreate(H5.java:1348) at org.scilab.modules.hdf5.write.H5Write.createFile(Unknown Source) at org.scilab.modules.xcos.io.scicos.H5RWHandler.writeDiagram(Unknown Source) at org.scilab.modules.xcos.graph.XcosDiagram.dumpToHdf5File(Unknown Source) at org.scilab.modules.xcos.actions.StartAction.createSimulationCommand(Unknown Source) at org.scilab.modules.xcos.actions.StartAction.actionPerformed(Unknown Source) at javax.swing.AbstractButton.fireActionPerformed(Unknown Source) at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source) at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source) at javax.swing.DefaultButtonModel.setPressed(Unknown Source) at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source) at java.awt.AWTEventMulticaster.mouseReleased(Unknown Source) at java.awt.Component.processMouseEvent(Unknown Source) at javax.swing.JComponent.processMouseEvent(Unknown Source) at java.awt.Component.processEvent(Unknown Source) at java.awt.Container.processEvent(Unknown Source) at java.awt.Component.dispatchEventImpl(Unknown Source) at java.awt.Container.dispatchEventImpl(Unknown Source) at java.awt.Component.dispatchEvent(Unknown Source) at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source) at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source) at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source) at java.awt.Container.dispatchEventImpl(Unknown Source) at java.awt.Window.dispatchEventImpl(Unknown Source) at java.awt.Component.dispatchEvent(Unknown Source) at java.awt.EventQueue.dispatchEvent(Unknown Source) at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.run(Unknown Source) ncsa.hdf.hdf5lib.exceptions.HDF5LibraryException ncsa.hdf.hdf5lib.exceptions.HDF5LibraryException at ncsa.hdf.hdf5lib.H5._H5Gcreate(Native Method) at ncsa.hdf.hdf5lib.H5.H5Gcreate(H5.java:1546) at org.scilab.modules.hdf5.write.H5WriteScilabCommonList.writeInDataSet(Unknown Source) at org.scilab.modules.hdf5.write.H5WriteScilabMList.writeInDataSet(Unknown Source) at org.scilab.modules.hdf5.write.H5Write.writeInDataSet(Unknown Source) at org.scilab.modules.xcos.io.scicos.H5RWHandler.writeDiagram(Unknown Source) at org.scilab.modules.xcos.graph.XcosDiagram.dumpToHdf5File(Unknown Source) at org.scilab.modules.xcos.actions.StartAction.createSimulationCommand(Unknown Source) at org.scilab.modules.xcos.actions.StartAction.actionPerformed(Unknown Source) at javax.swing.AbstractButton.fireActionPerformed(Unknown Source) at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source) at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source) at javax.swing.DefaultButtonModel.setPressed(Unknown Source) at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source) at java.awt.AWTEventMulticaster.mouseReleased(Unknown Source) at java.awt.Component.processMouseEvent(Unknown Source) at javax.swing.JComponent.processMouseEvent(Unknown Source) at java.awt.Component.processEvent(Unknown Source) at java.awt.Container.processEvent(Unknown Source) at java.awt.Component.dispatchEventImpl(Unknown Source) at java.awt.Container.dispatchEventImpl(Unknown Source) at java.awt.Component.dispatchEvent(Unknown Source) at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source) at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source) at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source) at java.awt.Container.dispatchEventImpl(Unknown Source) at java.awt.Window.dispatchEventImpl(Unknown Source) at java.awt.Component.dispatchEvent(Unknown Source) at java.awt.EventQueue.dispatchEvent(Unknown Source) at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.run(Unknown Source) import_from_hdf5: Unable to open file: C:\Users\Piotr Wi?niewski\AppData\Local\Temp\SCI_TMP_478 8_\xcos8580468894431797456.h5 The simulation file was done with SciLab v5.3.2 32bit on WinXP. It was working perfectly until now. What is wrong? What can I do to be able to use that again? I cannot build new models because I cannot edit parameters too. Please give me some advice what to do? With kind regards Piotr Wi?niewski -- PPCS Piotr Wi?niewski Komor?w 20A 58-100 ?widnica Poland tel.: +48 608 053 483 ---------------------------------------------------------------- Znajdz samochod idealny dla siebie! Szukaj >> http://linkint.pl/f29e2 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/png Size: 404466 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: XCOS win7prof x64.png Type: image/png Size: 179539 bytes Desc: not available URL: From allan.cornet at scilab.org Mon Jul 25 16:40:07 2011 From: allan.cornet at scilab.org (Allan CORNET) Date: Mon, 25 Jul 2011 16:40:07 +0200 Subject: [scilab-Users] Fwd: Fwd: Problems with SciLab 5.3.3 in Win7prof 64bit In-Reply-To: <4E2D7960.2070404@interia.pl> References: <4E2D3542.4030608@interia.pl> <4E2D7960.2070404@interia.pl> Message-ID: <004301cc4ad8$bf73cb10$3e5b6130$@scilab.org> Hi, A quick workaround Changes your TMP & TEMP variable environment Example : c:\MYTMP (not localized directory) http://www.itechtalk.com/thread3595.html Allan De : Piotr Wi?niewski [mailto:piotr.plaskowicki at interia.pl] Envoy? : lundi 25 juillet 2011 16:11 ? : users at lists.scilab.org Objet : [scilab-Users] Fwd: Fwd: Problems with SciLab 5.3.3 in Win7prof 64bit Dears, Problem is coming from user name. If I use the user name without country specific characters problem is not existing. Regs Piotr Wi?niewski ------ Wiadomo?? oryginalna ------ Temat: Fwd: Problems with SciLab 5.3.3 in Win7prof 64bit Data: Mon, 25 Jul 2011 11:20:02 +0200 Nadawca: Piotr Wi?niewski Adresat: users at lists.scilab.org Dears, With pleasure I try the new version of scilab. Unfortunately it is still not working with Win7 professional x64. Actually scilab is working but XCOS not (see attachment). In new version SciNotes starts without exception. This problem is solved by you :) So I continue using you software in XPMode and wait for new, running with win7, version. Additional problem: since SciLab 5.0 there is not so easy to make connection between blocks in xcos. The area around the input/output witch make connector active (green) is in my opinion to small. Best regards Piotr Wi?niewski ------ Wiadomo?? oryginalna ------ Temat: Problems with SciLab 5.3.2 in Win7 64bit Data: Sat, 09 Jul 2011 12:28:39 +0200 Nadawca: Piotr Wi?niewski Adresat: users at lists.scilab.org Dears, I get Scilab from your page. Installation I have done normally (as before on XP). Program is working but not fully. When I open SciNotes following comes. SciNotes works even that. The method createMenu in org.scilab.modules.scinotes.actions.LineNumbersAction threw an exception : java.lang.reflect.InvocationTargetException at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.scilab.modules.scinotes.SciNotesGUI.getMenuItem(Unknown Source) at org.scilab.modules.scinotes.SciNotesGUI.getMenu(Unknown Source) at org.scilab.modules.scinotes.SciNotesGUI.generateMenuBar(Unknown Source) at org.scilab.modules.scinotes.SciNotesGUI.init(Unknown Source) at org.scilab.modules.scinotes.SciNotes.createEditor(Unknown Source) at org.scilab.modules.scinotes.SciNotes.launchSciNotes(Unknown Source) at org.scilab.modules.scinotes.SciNotes$2.run(Unknown Source) at java.awt.event.InvocationEvent.dispatch(Unknown Source) at java.awt.EventQueue.dispatchEvent(Unknown Source) at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.run(Unknown Source) Caused by: java.util.NoSuchElementException at java.util.StringTokenizer.nextToken(Unknown Source) at org.scilab.modules.scinotes.actions.LineNumbersAction.createMenu(Unknown Source) ... 19 more The biggest problem is with Xcos. It doesn't work at all. When I try to start simulation following comes: ncsa.hdf.hdf5lib.exceptions.HDF5LibraryException ncsa.hdf.hdf5lib.exceptions.HDF5LibraryException at ncsa.hdf.hdf5lib.H5._H5Fcreate(Native Method) at ncsa.hdf.hdf5lib.H5.H5Fcreate(H5.java:1348) at org.scilab.modules.hdf5.write.H5Write.createFile(Unknown Source) at org.scilab.modules.xcos.io.scicos.H5RWHandler.writeDiagram(Unknown Source) at org.scilab.modules.xcos.graph.XcosDiagram.dumpToHdf5File(Unknown Source) at org.scilab.modules.xcos.actions.StartAction.createSimulationCommand(Unknown Source) at org.scilab.modules.xcos.actions.StartAction.actionPerformed(Unknown Source) at javax.swing.AbstractButton.fireActionPerformed(Unknown Source) at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source) at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source) at javax.swing.DefaultButtonModel.setPressed(Unknown Source) at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source) at java.awt.AWTEventMulticaster.mouseReleased(Unknown Source) at java.awt.Component.processMouseEvent(Unknown Source) at javax.swing.JComponent.processMouseEvent(Unknown Source) at java.awt.Component.processEvent(Unknown Source) at java.awt.Container.processEvent(Unknown Source) at java.awt.Component.dispatchEventImpl(Unknown Source) at java.awt.Container.dispatchEventImpl(Unknown Source) at java.awt.Component.dispatchEvent(Unknown Source) at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source) at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source) at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source) at java.awt.Container.dispatchEventImpl(Unknown Source) at java.awt.Window.dispatchEventImpl(Unknown Source) at java.awt.Component.dispatchEvent(Unknown Source) at java.awt.EventQueue.dispatchEvent(Unknown Source) at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.run(Unknown Source) ncsa.hdf.hdf5lib.exceptions.HDF5LibraryException ncsa.hdf.hdf5lib.exceptions.HDF5LibraryException at ncsa.hdf.hdf5lib.H5._H5Gcreate(Native Method) at ncsa.hdf.hdf5lib.H5.H5Gcreate(H5.java:1546) at org.scilab.modules.hdf5.write.H5WriteScilabCommonList.writeInDataSet(Unknown Source) at org.scilab.modules.hdf5.write.H5WriteScilabMList.writeInDataSet(Unknown Source) at org.scilab.modules.hdf5.write.H5Write.writeInDataSet(Unknown Source) at org.scilab.modules.xcos.io.scicos.H5RWHandler.writeDiagram(Unknown Source) at org.scilab.modules.xcos.graph.XcosDiagram.dumpToHdf5File(Unknown Source) at org.scilab.modules.xcos.actions.StartAction.createSimulationCommand(Unknown Source) at org.scilab.modules.xcos.actions.StartAction.actionPerformed(Unknown Source) at javax.swing.AbstractButton.fireActionPerformed(Unknown Source) at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source) at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source) at javax.swing.DefaultButtonModel.setPressed(Unknown Source) at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source) at java.awt.AWTEventMulticaster.mouseReleased(Unknown Source) at java.awt.Component.processMouseEvent(Unknown Source) at javax.swing.JComponent.processMouseEvent(Unknown Source) at java.awt.Component.processEvent(Unknown Source) at java.awt.Container.processEvent(Unknown Source) at java.awt.Component.dispatchEventImpl(Unknown Source) at java.awt.Container.dispatchEventImpl(Unknown Source) at java.awt.Component.dispatchEvent(Unknown Source) at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source) at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source) at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source) at java.awt.Container.dispatchEventImpl(Unknown Source) at java.awt.Window.dispatchEventImpl(Unknown Source) at java.awt.Component.dispatchEvent(Unknown Source) at java.awt.EventQueue.dispatchEvent(Unknown Source) at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.run(Unknown Source) import_from_hdf5: Unable to open file: C:\Users\Piotr Wi?niewski\AppData\Local\Temp\SCI_TMP_478 8_\xcos8580468894431797456.h5 The simulation file was done with SciLab v5.3.2 32bit on WinXP. It was working perfectly until now. What is wrong? What can I do to be able to use that again? I cannot build new models because I cannot edit parameters too. Please give me some advice what to do? With kind regards Piotr Wi?niewski -- PPCS Piotr Wi?niewski Komor?w 20A 58-100 ?widnica Poland tel.: +48 608 053 483 ---------------------------------------------------------------- Znajdz samochod idealny dla siebie! Szukaj >> http://linkint.pl/f29e2 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.png Type: image/png Size: 404466 bytes Desc: not available URL: From mike.pageone at googlemail.com Tue Jul 26 11:27:07 2011 From: mike.pageone at googlemail.com (Mike Page) Date: Tue, 26 Jul 2011 10:27:07 +0100 Subject: Debugging a Scilab crash Message-ID: Hi, I have some error in my Scilab code that occasionally crashes Scilab. I am fairly sure it is my fault, because the crash has only started happening recently after I made some major changes. When the crash occurs, Scilab just exits with no error message. The only log file produced by the crash is the one attached (unless there are others I have not seen). Can anyone give a clue where I should start to look for this problem? Does the log file give a clue as to what went wrong? Is there any debug mode to run Scilab that might provide extra information? Without a clue, it is quite hard to debug this problem, because my Scilab code is several thousand lines long and runs with attached real-time hardware. If I pause the execution, the hardware overruns and the code does not proceed normally. Additionally, this crash only happens about one time in twenty or so. Any help would be much appreciated. Regards, Mike. -------------- next part -------------- A non-text attachment was scrubbed... Name: hs_err_pid2976.log Type: application/octet-stream Size: 18413 bytes Desc: not available URL: From Mike at Page-One.Waitrose.com Tue Jul 26 16:05:59 2011 From: Mike at Page-One.Waitrose.com (Mike Page) Date: Tue, 26 Jul 2011 15:05:59 +0100 Subject: editor command crashes Scilex Message-ID: Hi, If I run Wscilex.exe (Windows NT), the command "editor()" executed from the console is fine. If instead I run Scilex.exe, the command "editor()" causes a crash. This error seems repeatable. Any idea why? The reported error is: Microsoft Windows XP [Version 5.1.2600] (C) Copyright 1985-2001 Microsoft Corp. C:\WINDOWS\system32>cd "\Program Files\scilab-5.3.2"\bin C:\Program Files\scilab-5.3.2\bin>Scilex.exe ___________________________________________ scilab-5.3.2 Consortium Scilab (DIGITEO) Copyright (c) 1989-2011 (INRIA) Copyright (c) 1989-2007 (ENPC) ___________________________________________ Startup execution: loading initial environment -->editor() java.lang.reflect.InvocationTargetException at java.awt.EventQueue.invokeAndWait(Unknown Source) at javax.swing.SwingUtilities.invokeAndWait(Unknown Source) at org.scilab.modules.scinotes.SciNotes.scinotes(Unknown Source) Caused by: java.lang.NoClassDefFoundError: org/scilab/modules/completion/Abstrac tSciCompletionWindow at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClassCond(Unknown Source) at java.lang.ClassLoader.defineClass(Unknown Source) at java.security.SecureClassLoader.defineClass(Unknown Source) at java.net.URLClassLoader.defineClass(Unknown Source) at java.net.URLClassLoader.access$000(Unknown Source) at java.net.URLClassLoader$1.run(Unknown Source) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) at org.scilab.modules.scinotes.actions.SciNotesCompletionAction$SciNotes CompletionConfiguration.(Unknown Source) at org.scilab.modules.scinotes.actions.SciNotesCompletionAction.(U nknown Source) at org.scilab.modules.scinotes.SciNotes.setKeyStrokeAction(Unknown Sourc e) at org.scilab.modules.scinotes.SciNotes.initInputMap(Unknown Source) at org.scilab.modules.scinotes.SciNotes.addTab(Unknown Source) at org.scilab.modules.scinotes.SciNotes.addTab(Unknown Source) at org.scilab.modules.scinotes.SciNotes.addEmptyTab(Unknown Source) at org.scilab.modules.scinotes.SciNotes.openFile(Unknown Source) at org.scilab.modules.scinotes.SciNotes$2.run(Unknown Source) at java.awt.event.InvocationEvent.dispatch(Unknown Source) at java.awt.EventQueue.dispatchEvent(Unknown Source) at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.run(Unknown Source) Caused by: java.lang.ClassNotFoundException: org.scilab.modules.completion.Abstr actSciCompletionWindow at java.net.URLClassLoader$1.run(Unknown Source) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) ... 29 more Warning !!! Scilab has found a critical error (EXCEPTION_ACCESS_VIOLATION). Save your data and restart Scilab. C:\Program Files\scilab-5.3.2\bin> Regards, Mike. From david.boutard-alter at sodern.fr Tue Jul 26 17:03:02 2011 From: david.boutard-alter at sodern.fr (BOUTARD david) Date: Tue, 26 Jul 2011 17:03:02 +0200 Subject: Problem with function fscanfMat Message-ID: <3198D327C5A4DE45A489D0212B93CD5F0697A21A@owa.sodern.fr> Hi, I have a file *.txt (1014 lines and 1043 rows) to read. My program is as follows: FichTxt=uigetfile(["*.txt"],"","Fichier texte",%t); temp1=fscanfMat(FichTxt(1)); It works very well with Scilab 5.2. I update Scilab to version 5.3 and use the same program. But It cannot read my files. It is written : Error 999 - I connot read the files C:\....*.txt Is there a problem of compatibility between both versions (32 bit or 64 bit for exemple)? I am working with windows XP professionnal. If yes where I could change the parameters? I have tried to use mopen and mfscanf but it is very long compare to mfscanfmat.. Or my program may not be written as it should. Regards David ______________________________________________________________________ This email has been scanned by the SODERN Email Security System. ______________________________________________________________________ -------------- next part -------------- An HTML attachment was scrubbed... URL: From allan.cornet at scilab.org Tue Jul 26 17:12:48 2011 From: allan.cornet at scilab.org (Allan CORNET) Date: Tue, 26 Jul 2011 17:12:48 +0200 Subject: [scilab-Users] Problem with function fscanfMat In-Reply-To: <3198D327C5A4DE45A489D0212B93CD5F0697A21A@owa.sodern.fr> References: <3198D327C5A4DE45A489D0212B93CD5F0697A21A@owa.sodern.fr> Message-ID: <003b01cc4ba6$7affa390$70feeab0$@scilab.org> Hi, Please create a bug report : http://bugzilla.scilab.org/ and attach a file to reproduce this trouble Thanks Allan De : BOUTARD david [mailto:david.boutard-alter at sodern.fr] Envoy? : mardi 26 juillet 2011 17:03 ? : users at lists.scilab.org Objet : [scilab-Users] Problem with function fscanfMat Hi, I have a file *.txt (1014 lines and 1043 rows) to read. My program is as follows: FichTxt=uigetfile(["*.txt"],"","Fichier texte",%t); temp1=fscanfMat(FichTxt(1)); It works very well with Scilab 5.2. I update Scilab to version 5.3 and use the same program. But It cannot read my files. It is written : Error 999 - I connot read the files C:\....*.txt Is there a problem of compatibility between both versions (32 bit or 64 bit for exemple)? I am working with windows XP professionnal. If yes where I could change the parameters? I have tried to use mopen and mfscanf but it is very long compare to mfscanfmat.. Or my program may not be written as it should. Regards David ______________________________________________________________________ This email has been scanned by the SODERN Email Security System. ______________________________________________________________________ -------------- next part -------------- An HTML attachment was scrubbed... URL: From denis.crete at thalesgroup.com Tue Jul 26 17:16:25 2011 From: denis.crete at thalesgroup.com (CRETE Denis) Date: Tue, 26 Jul 2011 17:16:25 +0200 Subject: Problem with function fscanfMat In-Reply-To: <3198D327C5A4DE45A489D0212B93CD5F0697A21A@owa.sodern.fr> References: <3198D327C5A4DE45A489D0212B93CD5F0697A21A@owa.sodern.fr> Message-ID: <27281_1311693401_4E2EDA59_27281_2599_1_908CBC9017354841B2F32BBEC70A05A101C357687329@THSONEA01CMS01P.one.grp> Hello, did you check that your data file does not mix TABs and SPACEs ? HTH Denis De : BOUTARD david [mailto:david.boutard-alter at sodern.fr] Envoy? : mardi 26 juillet 2011 17:03 ? : users at lists.scilab.org Objet : [scilab-Users] Problem with function fscanfMat Hi, I have a file *.txt (1014 lines and 1043 rows) to read. My program is as follows: FichTxt=uigetfile(["*.txt"],"","Fichier texte",%t); temp1=fscanfMat(FichTxt(1)); It works very well with Scilab 5.2. I update Scilab to version 5.3 and use the same program. But It cannot read my files. It is written : Error 999 - I connot read the files C:\....*.txt Is there a problem of compatibility between both versions (32 bit or 64 bit for exemple)? I am working with windows XP professionnal. If yes where I could change the parameters? I have tried to use mopen and mfscanf but it is very long compare to mfscanfmat.. Or my program may not be written as it should. Regards David ______________________________________________________________________ This email has been scanned by the SODERN Email Security System. ______________________________________________________________________ -------------- next part -------------- An HTML attachment was scrubbed... URL: From antoine.monmayrant at laas.fr Wed Jul 27 09:08:58 2011 From: antoine.monmayrant at laas.fr (Antoine Monmayrant) Date: Wed, 27 Jul 2011 09:08:58 +0200 Subject: [scilab-Users] RE: Problem with function fscanfMat In-Reply-To: <27281_1311693401_4E2EDA59_27281_2599_1_908CBC9017354841B2F32BBEC70A05A101C357687329@THSONEA01CMS01P.one.grp> References: <3198D327C5A4DE45A489D0212B93CD5F0697A21A@owa.sodern.fr> <27281_1311693401_4E2EDA59_27281_2599_1_908CBC9017354841B2F32BBEC70A05A101C357687329@THSONEA01CMS01P.one.grp> Message-ID: <4E2FB98A.8030609@laas.fr> Le 26/07/2011 17:16, CRETE Denis a ?crit : > Hello, > did you check that your data file does not mix TABs and SPACEs ? > HTH > Denis > > De : BOUTARD david [mailto:david.boutard-alter at sodern.fr] > Envoy? : mardi 26 juillet 2011 17:03 > ? : users at lists.scilab.org > Objet : [scilab-Users] Problem with function fscanfMat > > Hi, > > I have a file *.txt (1014 lines and 1043 rows) to read. > > My program is as follows: > > FichTxt=uigetfile(["*.txt"],"","Fichier texte",%t); > temp1=fscanfMat(FichTxt(1)); > > It works very well with Scilab 5.2. I update Scilab to version 5.3 and use the same program. But It cannot read my files. It is written : > > Error 999 - I connot read the files C:\....*.txt > > Is there a problem of compatibility between both versions (32 bit or 64 bit for exemple)? I am working with windows XP professionnal. > If yes where I could change the parameters? > > I have tried to use mopen and mfscanf but it is very long compare to mfscanfmat.. Or my program may not be written as it should. > > Regards > David > > ______________________________________________________________________ > This email has been scanned by the SODERN Email Security System. > > ______________________________________________________________________ > Can you join the txt file that you have trouble opening? I can try to open it here to see whether I can reproduce the bug... fscanfMat is really picky about the file format as it is not supposed to open anything other than files created by fprintfMat. Did you try read_csv? I converted most of my programs to use read_csv instead of fscanfMat. Antoine Antoine From d_boutard2000 at yahoo.fr Wed Jul 27 10:25:45 2011 From: d_boutard2000 at yahoo.fr (boutardd) Date: Wed, 27 Jul 2011 01:25:45 -0700 (PDT) Subject: Problem with function fscanfMat In-Reply-To: <003b01cc4ba6$7affa390$70feeab0$@scilab.org> References: <3198D327C5A4DE45A489D0212B93CD5F0697A21A@owa.sodern.fr> <003b01cc4ba6$7affa390$70feeab0$@scilab.org> Message-ID: <1311755145326-3202830.post@n3.nabble.com> I attached a file to bug report #9785 -- View this message in context: http://mailinglists.scilab.org/Problem-with-function-fscanfMat-tp3200598p3202830.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From d_boutard2000 at yahoo.fr Wed Jul 27 10:31:08 2011 From: d_boutard2000 at yahoo.fr (boutardd) Date: Wed, 27 Jul 2011 01:31:08 -0700 (PDT) Subject: Problem with function fscanfMat In-Reply-To: <27281_1311693401_4E2EDA59_27281_2599_1_908CBC9017354841B2F32BBEC70A05A101C357687329@THSONEA01CMS01P.one.grp> References: <3198D327C5A4DE45A489D0212B93CD5F0697A21A@owa.sodern.fr> <27281_1311693401_4E2EDA59_27281_2599_1_908CBC9017354841B2F32BBEC70A05A101C357687329@THSONEA01CMS01P.one.grp> Message-ID: <1311755468482-3202835.post@n3.nabble.com> As it worked with scilab 5.2, I did not check tab or space inside file. Moreover could you explain as I could modify tab or space as needed. -- View this message in context: http://mailinglists.scilab.org/Problem-with-function-fscanfMat-tp3200598p3202835.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From ginters.buss at gmail.com Wed Jul 27 13:49:39 2011 From: ginters.buss at gmail.com (=?UTF-8?Q?Ginters_Bu=C5=A1s?=) Date: Wed, 27 Jul 2011 14:49:39 +0300 Subject: comment produces error for Scilab 5.3.1 onwards; Scilab 5.3.0 and before work fine Message-ID: Dear all, Probably you have spotted this, but I didn't find a discussion, so I post it: Say, we have a comment line: // rms1=ms_reg('y1(4:$)',['y1(3:$-1)','fde(2:$-2)','fde(1:$-3)'],'const',2,1,1,'noprint') that did not produce problems for Scilab until 5.3.1. I understand that this is caused by apostrophes, but this is quite bothering and the change of behavior of the Scilab between 5.3.0 and 5.3.2, say, is also somewhat unexpected. Scilab 5.2 and Scilab 5.3.0 works fine with these apostrophes. So, for Scilab 5.3.3., is there a stricter comment command that would ignore anything inside the comment? I liked the way Scilab 5.2, 5.3.0 behaved. Gin. -------------- next part -------------- An HTML attachment was scrubbed... URL: From antoine.monmayrant at laas.fr Wed Jul 27 13:55:49 2011 From: antoine.monmayrant at laas.fr (Antoine Monmayrant) Date: Wed, 27 Jul 2011 13:55:49 +0200 Subject: [scilab-Users] RE: Problem with function fscanfMat In-Reply-To: <1311755468482-3202835.post@n3.nabble.com> References: <3198D327C5A4DE45A489D0212B93CD5F0697A21A@owa.sodern.fr> <27281_1311693401_4E2EDA59_27281_2599_1_908CBC9017354841B2F32BBEC70A05A101C357687329@THSONEA01CMS01P.one.grp> <1311755468482-3202835.post@n3.nabble.com> Message-ID: <4E2FFCC5.6040501@laas.fr> Le 27/07/2011 10:31, boutardd a ?crit : > As it worked with scilab 5.2, I did not check tab or space inside file. > Moreover could you explain as I could modify tab or space as needed. > > -- > View this message in context: http://mailinglists.scilab.org/Problem-with-function-fscanfMat-tp3200598p3202835.html > Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. Are you working under linux of windows? Under Linux, you can use sed ( sed -i 's/\t/ /g' file.txt ) or tr. -- +++++++++++++++++++++++++++++++++++++++++++++++++++++++ Antoine Monmayrant LAAS - CNRS 7 avenue du Colonel Roche 31077 TOULOUSE Cedex 4 FRANCE Tel:+33 5 61 33 64 59 email : antoine.monmayrant at laas.fr permanent email : antoine.monmayrant at polytechnique.org +++++++++++++++++++++++++++++++++++++++++++++++++++++++ From antoine.monmayrant at laas.fr Wed Jul 27 13:57:30 2011 From: antoine.monmayrant at laas.fr (Antoine Monmayrant) Date: Wed, 27 Jul 2011 13:57:30 +0200 Subject: [scilab-Users] comment produces error for Scilab 5.3.1 onwards; Scilab 5.3.0 and before work fine In-Reply-To: References: Message-ID: <4E2FFD2A.8010505@laas.fr> Le 27/07/2011 13:49, Ginters Bu?s a ?crit : > Dear all, > > Probably you have spotted this, but I didn't find a discussion, so I post > it: > > Say, we have a comment line: > > // > rms1=ms_reg('y1(4:$)',['y1(3:$-1)','fde(2:$-2)','fde(1:$-3)'],'const',2,1,1,'noprint') > > that did not produce problems for Scilab until 5.3.1. > > I understand that this is caused by apostrophes, but this is quite bothering > and the change of behavior of the Scilab between 5.3.0 and 5.3.2, say, is > also somewhat unexpected. Scilab 5.2 and Scilab 5.3.0 works fine with these > apostrophes. So, for Scilab 5.3.3., is there a stricter comment command that > would ignore anything inside the comment? I liked the way Scilab 5.2, 5.3.0 > behaved. > > Gin. > I guess this is caused by $, not '. See bug 9505: http://bugzilla.scilab.org/show_bug.cgi?id=9505 Antoine From allan.cornet at scilab.org Wed Jul 27 16:52:03 2011 From: allan.cornet at scilab.org (Allan CORNET) Date: Wed, 27 Jul 2011 16:52:03 +0200 Subject: [scilab-Users] RE: Problem with function fscanfMat In-Reply-To: <4E2FFCC5.6040501@laas.fr> References: <3198D327C5A4DE45A489D0212B93CD5F0697A21A@owa.sodern.fr> <27281_1311693401_4E2EDA59_27281_2599_1_908CBC9017354841B2F32BBEC70A05A101C357687329@THSONEA01CMS01P.one.grp> <1311755468482-3202835.post@n3.nabble.com> <4E2FFCC5.6040501@laas.fr> Message-ID: <001b01cc4c6c$bf786860$3e693920$@scilab.org> Hi, Please update to Scilab 5.3.2 or more It works for me on linux and windows Allan -----Message d'origine----- De?: Antoine Monmayrant [mailto:antoine.monmayrant at laas.fr] Envoy??: mercredi 27 juillet 2011 13:56 ??: users at lists.scilab.org Objet?: Re: [scilab-Users] RE: Problem with function fscanfMat Le 27/07/2011 10:31, boutardd a ?crit : > As it worked with scilab 5.2, I did not check tab or space inside file. > Moreover could you explain as I could modify tab or space as needed. > > -- > View this message in context: > http://mailinglists.scilab.org/Problem-with-function-fscanfMat-tp32005 > 98p3202835.html Sent from the Scilab users - Mailing Lists Archives > mailing list archive at Nabble.com. Are you working under linux of windows? Under Linux, you can use sed ( sed -i 's/\t/ /g' file.txt ) or tr. -- +++++++++++++++++++++++++++++++++++++++++++++++++++++++ Antoine Monmayrant LAAS - CNRS 7 avenue du Colonel Roche 31077 TOULOUSE Cedex 4 FRANCE Tel:+33 5 61 33 64 59 email : antoine.monmayrant at laas.fr permanent email : antoine.monmayrant at polytechnique.org +++++++++++++++++++++++++++++++++++++++++++++++++++++++ From david.cheze at cea.fr Thu Jul 28 08:48:10 2011 From: david.cheze at cea.fr (=?UTF-8?Q?David_Ch=C3=A8ze?=) Date: Wed, 27 Jul 2011 23:48:10 -0700 (PDT) Subject: runtime error expected not detected Message-ID: <1311835690461-3205890.post@n3.nabble.com> Hi, debbuging my program, I noticed this : global declaration in level 0 of the script: global Vbloc; //... Vbloc=tlist(['1 1 1','Pchfg','Pclim','Sene'],[],[],zeros(2,10)); //... in a further fonction, it is redeclared as global then initialized like that: global Vbloc; //... Vbloc.Pchfg=zeros(size(ichfg,2),8); //... and then it is used in the same function: Vbloc.Pchfg(:,9)=donnees(ichfg,26); I would expect that it complains for 'Vbloc.Pchfg' bad column's index in this last affectation at runtime but it didn't : is that really possible in "usual" behaviour? thanks for your advice, David -- View this message in context: http://mailinglists.scilab.org/runtime-error-expected-not-detected-tp3205890p3205890.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From lod at solumaticacanarias.es Thu Jul 28 16:32:34 2011 From: lod at solumaticacanarias.es (Lourdes) Date: Thu, 28 Jul 2011 07:32:34 -0700 (PDT) Subject: Geometric problem solving Message-ID: <1311863554875-3206844.post@n3.nabble.com> Good afternoon: I'm trying to make a program for image processing with Scilab 5.3.2.y need two functions: calculate the area in pixels of a given area and the Convex Hull algorithm for the same area. The idea is to translate code in Matlab (where the function used is regionprops) to Scilab I have seen the CGLAB toolbox but I can not install it correctly. I would be grateful if someone aimed on the installation of the same for this version of the program and where to get your download link Thanks in advance -- View this message in context: http://mailinglists.scilab.org/Geometric-problem-solving-tp3206844p3206844.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From lod at solumaticacanarias.es Thu Jul 28 16:35:33 2011 From: lod at solumaticacanarias.es (Lourdes) Date: Thu, 28 Jul 2011 07:35:33 -0700 (PDT) Subject: Geometric problem solving Message-ID: <1311863733108-3206855.post@n3.nabble.com> Good afternoon: I'm trying to make a program for image processing with Scilab 5.3.2.y need two functions: calculate the area in pixels of a given area and the Convex Hull algorithm for the same area. The idea is to translate code in Matlab (where the function used is regionprops) to Scilab I have seen the CGLAB toolbox but I can not install it correctly. I would be grateful if someone aimed on the installation of the same for this version of the program and where to get your download link Thanks in advance -- View this message in context: http://mailinglists.scilab.org/Geometric-problem-solving-tp3206855p3206855.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From xwcjdn at gmail.com Fri Jul 29 15:58:21 2011 From: xwcjdn at gmail.com (xunathan) Date: Fri, 29 Jul 2011 06:58:21 -0700 (PDT) Subject: scilab on fedora-15 x86_64 In-Reply-To: References: Message-ID: <1311947901818-3209671.post@n3.nabble.com> hi , I met the same problem before. I worked it out in this way, First ,you must check if you have the libXss.so.1 in you fedroa15 by searching /usr/lib or /lib if you donot have ,you can download it from http://rpmfind.net/linux/rpm2html/search.php?query=libXss.so.1&submit=Search+...&system=&arch= http://rpmfind.net/linux/rpm2html/search.php?query=libXss.so.1&submit=Search+...&system=&arch= and install it . then you can install scilab,this is my methods. Gook luck -- View this message in context: http://mailinglists.scilab.org/scilab-on-fedora-15-x86-64-tp3164948p3209671.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com.