From michael.baudin at scilab.org Wed Jun 1 09:07:35 2011 From: michael.baudin at scilab.org (michael.baudin at scilab.org) Date: Wed, 01 Jun 2011 09:07:35 +0200 Subject: [scilab-Users] intg: results differ substantially from those from Wolfram Alpha, which are =?UTF-8?Q?correct=3F?= In-Reply-To: <4DDBC5FA.5000605@inria.fr> References: "" <4DD791FE.7030903@univ-lemans.fr> <4DDBC5FA.5000605@inria.fr> Message-ID: <6b64e0aa66666d785a3399bae0e87ad2@scilab.org> Hi, Serge is absolutely right: any other splitting of the integral leads to the result. In my experiments, Wolfram Alpha does not return -0.111. Notice that Wolfram Alpha can also be wrong. The result depends on the way to ask the question : * http://www.wolframalpha.com/input/?i=integrate+%281%2Fsqrt%282*pi%29%29*log%28abs%281%2B0.1*x%29%29*exp%28-%28x^2%29%2F2%29+from+-100+to+-100 [1] [2] returns 0. * http://www.wolframalpha.com/input/?i=integrate&a=*C.integrate-_*Calculator.dflt-&f2=%281%2Fsqrt%282*pi%29%29*log%28abs%281%2B0.1*x%29%29*exp%28-%28x^2%29%2F2%29&f=Integral.integrand_%281%2Fsqrt%282*pi%29%29*log%28abs%281%2B0.1*x%29%29*exp%28-%28x^2%29%2F2%29&f3=-100&f=Integral.rangestart_-100&f4=100&f=Integral.rangeend_100&a=*FVarOpt.1-_**-.***Integral.variable---.**Integral.rangestart-.*Integral.rangeend [3]--- [4] returns -0.00507764. Bruno Pincon warned me that the integrand is singular at x=-a/sigma. By chance, this singularity is not seen by the integrator, which does not sample at this node. Moreover, the neighbors of this singularity have a y-value which is too small to be influential in the result. -->a = 1; -->sigma = 0.1; -->s = -a/sigma; -->ieee(2); -->y=f(s, a,sigma) y = - Inf -->xnear = nearfloat("succ", s); -->y=f(xnear, a,sigma) y = - 2.827D-21 -->xnear = nearfloat("pred", s); -->y=f(xnear, a,sigma) y = - 2.773D-21 Splitting along this discontinuity returns the correct result : -->out1=intg(-100,s,list(f,1,.1)); // Wolfram = -3.95999x10-23 -->out2=intg(s,100,list(f,1,.1)); // Wolfram = -0.00507764 -->I = out1 + out2 // Wolfram = -0.00507764 I = - 0.0050776 But splitting along another point also returns the correct result. -->out1=intg(-100,10,list(f,1,.1)); -->out2=intg(10,100,list(f,1,.1)); -->I = out1 + out2 I = - 0.0050776 I guess that splitting along any point for which the function is non-zero allows to retrieve the result... We must be warned that it is easy to fool any deterministic integration algorithm. Indeed, the integration algorithm behind the intg function is based on an adaptive algorithm, based on deterministic integration nodes. The algorithm is there : http://www.netlib.org/quadpack/dqagse.f [5] The first step is to use a 21 point rule : http://www.netlib.org/quadpack/dqk21.f [6] If this rule identifies a zero integral, the algorithm returns. Hence, there is an easy way to fool this algorithm, as suggested by Kahan in a 1980 paper ("Handheld calculator evaluates integrals"). In the first step, we call the integrator with a function which returns y=f(x)=0. The integrator measures zero function values, measures a zero integral and returns. Meanwhile, we have recorded the integration nodes. Then, we integrate a special function, which is equal to zero at the integration nodes and is non-zero, positive, elsewhere. The integrator samples at the same points, and, as before, returns a zero integral: but this time it is wrong. This idea is explored in the following script. a = -10; b = 10; function y=foolme(x) global _storex_ y=0 mprintf("x=%fn",x) _storex_($+1)=x endfunction global _storex_ _storex_ = []; intg(a,b,foolme) function y=reallyfoolme(x) global _storex_ r = _storex_ y = prod(x-r)^2 endfunction intg(a,b,reallyfoolme) x = linspace(a,b,1000); for i = 1 : 1000 y(i)=reallyfoolme(x(i)); end plot(x,y,"b-") Best regards, Michael Baudin Le 24/05/2011 16:51, Serge Steer a ?crit : Le 24/05/2011 09:34, Ginters Bu?s a ?crit : ----- Message d'origine ----- De : Ginters Bu?s Date : 20/05/2011 13:09: Dear all, Let's integrate: function y=f(x, a, sigma),y=(1/sqrt(2*%pi))*log(abs(a+sigma*x))*exp(-(x^2)/2),endfunction out=intg(-1e+2,1e+2,list(f,1,.1)) out=8.605D-49 but Wolfram Alpha gives out= -0.111 which is a totally different answer. I've noticed that intg and integrate incline to give values close to zero when boundaries tend to infinity. So, I trust Wolfram Alpha more. How to get around the apparent mistakes in intg, integrate (particularly, I'm interested in indefinite integrals)? Gin. On Sat, May 21, 2011 at 1:20 PM, Samuel GOUGEON wrote: Hello, The following thread on Bugzilla may also feed the present discussion: http://bugzilla.scilab.org/show_bug.cgi?id=5728 [8] Regards Samuel Thanks. I like your insistance in that discussion, Sam. Although a "known-limitation-of-current-algorithm" might be a correct description of the current algorithm, it nevertheless does not help much when one wants the algorithm to give the correct solution and observes that a guy like Wolfram has apparently has done something about this issue: for y given function, Scilab's intg/integrate gives ok value for bounds (-50,50), but screws up for (-100,100) and larger bounds, which I consider still pretty narrow. On the contrary, Wolfram Alpha http://www.wolframalpha.com/input/?i=integration&a=*C.integration-_*Calculator.dflt-&f2=%281%2Fsqrt%282*pi%29%29*log%28abs%281%2B.1*x%29%29*exp%28-%28x [9]^2%29%2F2%29&x=0&y=0&f=Integral.integrand_%281%2Fsqrt%282*pi%29%29*log%28abs%281%2B.1*x%29%29*exp%28-%28x^2%29%2F2%29&f3=-infinity&f=Integral.rangestart_-infinity&f4=%2Binfinity&f=Integral.rangeend_%2Binfinity&a=*FVarOpt.1-_**-.***Integral.variable---.**Integral.rangestart-.*Integral.rangeend--- gives ok values for bounds (-50,50), (-100,100), (-1000,1000) and it allows to directly use infinite bounds and get ok result (interim bounds like (-1e9,1e9) are not ok). I consider this a superior solution. If Wolfram can, why shouldn't Scilab try? The status quo might hurt Scilab's reputation in the domain in long run. Gin. WolframAlpha is based on a symbolic computation engine that furnishes much more tools for integration. In particular it is possible for it doing serie expansion near the infinity. If one remarks that for x>35 and xintg(-35,35,myfun) ans = - 0.0050776 but without symbolic computation facilities it is difficult to automatically determine that such integration interval reduction can be done... Serge Steer INRIA -- Micha?l Baudin Ing?nieur de d?veloppement michael.baudin at scilab.org [10] ------------------------- 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 Links: ------ [1] http://www.wolframalpha.com/input/?i=integrate+%281%2Fsqrt%282*pi%29%29*log%28abs%281%2B0.1*x%29%29*exp%28-%28x%5E2%29%2F2%29+from+-100+to+-100 [2] http://www.wolframalpha.com/input/?i=integrate+%281%2Fsqrt%282*pi%29%29*log%28abs%281%2B0.1*x%29%29*exp%28-%28x%5E2%29%2F2%29+from+-100+to+-100 [3] http://www.wolframalpha.com/input/?i=integrate&a=*C.integrate-_*Calculator.dflt-&f2=%281%2Fsqrt%282*pi%29%29*log%28abs%281%2B0.1*x%29%29*exp%28-%28x%5E2%29%2F2%29&f=Integral.integrand_%281%2Fsqrt%282*pi%29%29*log%28abs%281%2B0.1*x%29%29*exp%28-%28x%5E2%29%2F2%29&f3=-100&f=Integral.rangestart_-100&f4=100&f=Integral.rangeend_100&a=*FVarOpt.1-_**-.***Integral.variable---.**Integral.rangestart-.*Integral.rangeend [4] http://www.wolframalpha.com/input/?i=integrate&a=*C.integrate-_*Calculator.dflt-&f2=%281%2Fsqrt%282*pi%29%29*log%28abs%281%2B0.1*x%29%29*exp%28-%28x%5E2%29%2F2%29&f=Integral.integrand_%281%2Fsqrt%282*pi%29%29*log%28abs%281%2B0.1*x%29%29*exp%28-%28x%5E2%29%2F2%29&f3=-100&f=Integral.rangestart_-100&f4=100&f=Integral.rangeend_100&a=*FVarOpt.1-_**-.***Integral.variable---.**Integral.rangestart-.*Integral.rangeend--- [5] http://www.netlib.org/quadpack/dqagse.f [6] http://www.netlib.org/quadpack/dqk21.f [7] mailto:Samuel.Gougeon at univ-lemans.fr [8] http://bugzilla.scilab.org/show_bug.cgi?id=5728 [9] http://www.wolframalpha.com/input/?i=integration&a=*C.integration-_*Calculator.dflt-&f2=%281%2Fsqrt%282*pi%29%29*log%28abs%281%2B.1*x%29%29*exp%28-%28x [10] mailto:michael.baudin at scilab.org -------------- next part -------------- An HTML attachment was scrubbed... URL: From ludo.wag at laposte.net Wed Jun 1 14:33:26 2011 From: ludo.wag at laposte.net (Orbeman) Date: Wed, 1 Jun 2011 05:33:26 -0700 (PDT) Subject: Concatenation with hypermatrix Message-ID: <1306931606374-3010503.post@n3.nabble.com> Hello, Is it possible to concatenate hypermatrix ? I use [A B] and [A;B] to cocatenate 2D-matrix in row and in line respectively. But I envisage working with 3D matrix and concatenate some 2D matrix in "thickness". I will not use C(:,:,1)=A, C(:,:,2)=B,... but anything like C=[C @ x] include in a loop. I hope that I was intelligible because I don't speak english very well. Thank you ! -- View this message in context: http://mailinglists.scilab.org/Concatenation-with-hypermatrix-tp3010503p3010503.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From vogt at centre-cired.fr Wed Jun 1 14:40:57 2011 From: vogt at centre-cired.fr (Adrien Vogt-Schilb) Date: Wed, 01 Jun 2011 14:40:57 +0200 Subject: [scilab-Users] Concatenation with hypermatrix In-Reply-To: <1306931606374-3010503.post@n3.nabble.com> References: <1306931606374-3010503.post@n3.nabble.com> Message-ID: <4DE63359.10807@centre-cired.fr> At my knowledge there's no better way Le 01/06/2011 14:33, Orbeman a ?crit : > I will not use C(:,:,1)=A, C(:,:,2)=B,... but anything like > C=[C @ x] include in a loop -- *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 Samuel.Gougeon at univ-lemans.fr Wed Jun 1 14:50:06 2011 From: Samuel.Gougeon at univ-lemans.fr (Samuel GOUGEON) Date: Wed, 01 Jun 2011 14:50:06 +0200 Subject: [scilab-Users] Concatenation with hypermatrix In-Reply-To: <1306931606374-3010503.post@n3.nabble.com> References: <1306931606374-3010503.post@n3.nabble.com> Message-ID: <4DE6357E.7040500@univ-lemans.fr> Hello, ----- Message d'origine ----- De : Orbeman Date : 01/06/2011 14:33: > Hello, > > Is it possible to concatenate hypermatrix ? I use [A B] and [A;B] to > cocatenate 2D-matrix in row and in line respectively. Yes. Try this: a = int(rand(2,2,2)*10) b = int(rand(2,2,2)*10) c = matrix([a ; b],[2 2 4]) HTH Samuel PS: You may also use size() to compute from a and b the vector of total sizes needed for matrix() > But I envisage working with 3D matrix and concatenate some 2D matrix in > "thickness". I will not use C(:,:,1)=A, C(:,:,2)=B,... but anything like > C=[C @ x] include in a loop. > > I hope that I was intelligible because I don't speak english very well. > > Thank you ! > > -- > View this message in context: http://mailinglists.scilab.org/Concatenation-with-hypermatrix-tp3010503p3010503.html > Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. > From Mike at Page-One.Waitrose.com Wed Jun 1 14:56:49 2011 From: Mike at Page-One.Waitrose.com (Mike Page) Date: Wed, 1 Jun 2011 13:56:49 +0100 Subject: [scilab-Users] Concatenation with hypermatrix In-Reply-To: <4DE63359.10807@centre-cired.fr> Message-ID: Hi, It depends on how you want the hypermatrices to be joined. I have done this before using "casting" to a matrix and then back again. For example if -->A = hypermat([2,3,4],[1:24]) and -->B = hypermat([2,3,2],[101:112]) and I want to join A and B along their common ([2,3]) direction to give a [2,3,6] hypermatrix, then I can use -->C=[matrix(A,4,6) matrix(B,4,3)] -->D = hypermat([2,3,6],C) But I may have misunderstood what you want to do. Regards, Mike. -----Original Message----- From: Adrien Vogt-Schilb [mailto:vogt at centre-cired.fr] Sent: 01 June 2011 13:41 To: users at lists.scilab.org Subject: Re: [scilab-Users] Concatenation with hypermatrix At my knowledge there's no better way Le 01/06/2011 14:33, Orbeman a ?crit : I will not use C(:,:,1)=A, C(:,:,2)=B,... but anything like C=[C @ x] include in a loop -- Adrien Vogt-Schilb Research Fellow vogt at centre-cired.fr Tel: (+33) 1 43 94 73 96 Fax: (+33) 1 43 94 73 70 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 Samuel.Gougeon at univ-lemans.fr Wed Jun 1 15:31:25 2011 From: Samuel.Gougeon at univ-lemans.fr (Samuel GOUGEON) Date: Wed, 01 Jun 2011 15:31:25 +0200 Subject: [scilab-Users] Concatenation with hypermatrix In-Reply-To: <4DE6357E.7040500@univ-lemans.fr> References: <1306931606374-3010503.post@n3.nabble.com> <4DE6357E.7040500@univ-lemans.fr> Message-ID: <4DE63F2D.4030600@univ-lemans.fr> Another clearer and more general example, where a new leaf is added at each iteration: r = []; for i=1:4 nr = grand(2,2,"uin",0,9); r = matrix([ matrix(r,[1 size(r,"*")]) matrix(nr,[1 size(nr,"*")])],[2 2 i]) end By the way, you are right: A new concatenation operator along the third dimension could be useful. Samuel From ludo.wag at laposte.net Wed Jun 1 15:28:41 2011 From: ludo.wag at laposte.net (Orbeman) Date: Wed, 1 Jun 2011 06:28:41 -0700 (PDT) Subject: Concatenation with hypermatrix In-Reply-To: References: <1306931606374-3010503.post@n3.nabble.com> <4DE63359.10807@centre-cired.fr> Message-ID: <1306934921859-3010714.post@n3.nabble.com> I've finally found the command C=cat(3,C,x). It works but very slowly. For exemple it needs more than 2 min to create a 890 * 2 * 5 3D hypermatrix, but barely 1 sec to create the same data with 890 * (2+2+2+2+2) 2D matrix. In fact, I've analysed n experiences which data (2 rows and variable line) are written in one file per experience. All of the files are not the same length, so I add number 'tag' to egal the maximun number of line, here 890. After that I've created some others (hyper) matrix with different size of row : 890 * 1 * 5, 890 * 3 * 5,... I can imagine the increase of time for comptute. -- View this message in context: http://mailinglists.scilab.org/Concatenation-with-hypermatrix-tp3010503p3010714.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From Mike at Page-One.Waitrose.com Wed Jun 1 16:17:26 2011 From: Mike at Page-One.Waitrose.com (Mike Page) Date: Wed, 1 Jun 2011 15:17:26 +0100 Subject: [scilab-Users] RE: Concatenation with hypermatrix In-Reply-To: <1306934921859-3010714.post@n3.nabble.com> Message-ID: Hi, I think you have encountered a general problem with hypermatrices. They are quite fast to operate on when you work across some dimensions, but across other dimensions they can be *VERY* slow. I don't know why this is - maybe somebody who wrote the hypermatrix code could look at it. For instance, some time ago I had a need to extract a "slice" (that is a matrix) from a hypermatrix. This took a very long time, but when I "transposed" the hypermatrix using the permute function, then it was much faster. I think if you arrange your dimensions so that the data to be joined fits on the end of the existing storage then it will be faster. Regards, Mike. -----Original Message----- From: Orbeman [mailto:ludo.wag at laposte.net] Sent: 01 June 2011 14:29 To: users at lists.scilab.org Subject: [scilab-Users] RE: Concatenation with hypermatrix I've finally found the command C=cat(3,C,x). It works but very slowly. For exemple it needs more than 2 min to create a 890 * 2 * 5 3D hypermatrix, but barely 1 sec to create the same data with 890 * (2+2+2+2+2) 2D matrix. In fact, I've analysed n experiences which data (2 rows and variable line) are written in one file per experience. All of the files are not the same length, so I add number 'tag' to egal the maximun number of line, here 890. After that I've created some others (hyper) matrix with different size of row : 890 * 1 * 5, 890 * 3 * 5,... I can imagine the increase of time for comptute. -- View this message in context: http://mailinglists.scilab.org/Concatenation-with-hypermatrix-tp3010503p3010 714.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. No virus found in this incoming message. Checked by AVG - www.avg.com Version: 9.0.901 / Virus Database: 271.1.1/3670 - Release Date: 05/31/11 19:34:00 From ludo.wag at laposte.net Wed Jun 1 16:21:15 2011 From: ludo.wag at laposte.net (Orbeman) Date: Wed, 1 Jun 2011 07:21:15 -0700 (PDT) Subject: Concatenation with hypermatrix In-Reply-To: <4DE63F2D.4030600@univ-lemans.fr> References: <1306931606374-3010503.post@n3.nabble.com> <4DE6357E.7040500@univ-lemans.fr> <4DE63F2D.4030600@univ-lemans.fr> Message-ID: <1306938075758-3010971.post@n3.nabble.com> Thank you ! Our function work fast than cat. -- View this message in context: http://mailinglists.scilab.org/Concatenation-with-hypermatrix-tp3010503p3010971.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From vogt at centre-cired.fr Wed Jun 1 16:25:09 2011 From: vogt at centre-cired.fr (Adrien Vogt-Schilb) Date: Wed, 01 Jun 2011 16:25:09 +0200 Subject: [scilab-Users] RE: Concatenation with hypermatrix In-Reply-To: References: Message-ID: <4DE64BC5.9090904@centre-cired.fr> this riminds me of a dead bug : http://bugzilla.scilab.org/show_bug.cgi?id=5205 looking at the code of permute, i "discovered" that some loops could be improved with simple things like matrix initializations Le 01/06/2011 16:17, Mike Page a ?crit : > Hi, > > I think you have encountered a general problem with hypermatrices. [...] they can be*VERY* slow -- *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 Andrea.Amorosi76 at gmail.com Thu Jun 2 16:57:49 2011 From: Andrea.Amorosi76 at gmail.com (Andrea.Amorosi76 at gmail.com) Date: Thu, 02 Jun 2011 16:57:49 +0200 Subject: Scilab as dynamic models development tool. Is it possible? Message-ID: <4DE7A4ED.5030509@gmail.com> Hi to all, I'm a Matlab/Simulink user and I would like to start to use Scilab as development tool. The scope is to realize dynamical models and the final output shall be C code to eventually use in a more complex simulation environment. Moreover there shall be the possibility to test the model using both time hystories inputs and soft real time simulation with manually inserted inputs via joystick and the testing environment shall be able to send/receive data via udp to/from other softwares. When the test is executed models outputs shall be saved and visible via display and scopes. I've tried to use Xcos, but the lack of the possibility to give a name to inports and outports of the super blocks (as is possible in simulink models) is one of the reason which drives me to not use Xcos for the development of the models and so I think I will realize the models with a series of Scilab function. The so realized models can be: 1) tested in the Scilab environment 2) tested in the Xcos environment calling the "main" function 3) traslated in C code using Scilab 2 C Now the questions are: 1) do you think the above project to be feasible? What are the main difficulties you see, if any? 2) The C code generated in such a way has any restriction on the usable license to distribute it? Can be eventually used in a proprietray licensed program? 3) It is possible to send/receive UDP packets from a scilab script and to call python code (I've already developed a python code to interface with the joystick)? If I use xcos to test the model, are UDP send/receive blocks available? Is there any display similar to Simulink ones? 4) Does scilab has the ability to use and pass as input/outputs of function nested structures? Thank you for your help, Andrea From vikash4exploring at gmail.com Thu Jun 2 19:35:21 2011 From: vikash4exploring at gmail.com (VIKASH .) Date: Thu, 2 Jun 2011 23:05:21 +0530 Subject: Problem in scilab-5.3.2_x64 installation. Message-ID: Dear Scilab authorities, I am a new user of Scilab. I have downloaded the main set up wizard scilab-5.3.2_x64 of 120 MB. While I am trying to instal the software in my laptop, I am getting the following foue messages in fourpop-up windows respectively, one after another, before the installation finishes. The messages are :- 1.?Impossible to download Intel Math Kernel Library files for Scilab (Default library will be used).? 2. ?Impossible to download FFTW3 library optimized by Intel Math Kernel Library (Default library will be used).? 3.?BLAS, LAPACK reference libraries will be installed and used.? 4.?FFTW3 reference library will be installed and used.? Could you please tell me what are these files all about, what they do ? Also please provide me the respective links to download those two files. Should I install these two files prior to installing the main Scilab set up or may I install these two files after the main set up ? I will really appreciate your information on these. Note:- It seems it tries to download some files from internet while installing, but doesn't succeeds though, because I have VERY SLOW internet connectivity at my home and therefore I cannot download any file directly in my laptop. However I have good access of internet via my mobile phone and therefore if the above mentioned files can be made available via some link, it would be really nice as then I can download those files from my mobile and then finally transfer them to my laptop to complete the installation procedure. Thanks ! -- With Best Wishes Vikash Dutt Pandey From berns.buenaobra at gmail.com Fri Jun 3 06:36:57 2011 From: berns.buenaobra at gmail.com (Berns Buenaobra) Date: Fri, 3 Jun 2011 12:36:57 +0800 Subject: [scilab-Users] Problem in scilab-5.3.2_x64 installation. In-Reply-To: References: Message-ID: Hello Vikash: Its your connectivity - and probably also your ISP provider link. Maybe downloading a module per module thing and having installed off-line is better. If there are "faster" internet cafes in town better do it there - malls are also a possibility on a public WiFi could also be a possibility. What's your download speed running by the way? It should be good even at 35KB/s on a week and distant WiFi WAP. Berns B. On Fri, Jun 3, 2011 at 1:35 AM, VIKASH . wrote: > Dear Scilab authorities, > > I am a new user of Scilab. I have downloaded the main set up wizard > scilab-5.3.2_x64 of 120 MB. While I am trying to instal the software > in my laptop, I am getting the following foue messages in fourpop-up > windows respectively, one after another, before the installation > finishes. The messages are :- > > 1.?Impossible to download Intel Math Kernel Library files for Scilab > (Default library will be used).? > 2. ?Impossible to download FFTW3 library optimized by Intel Math Kernel > Library > (Default library will be used).? > 3.?BLAS, LAPACK reference libraries will be installed and used.? > 4.?FFTW3 reference library will be installed and used.? > > Could you please tell me what are these files all about, what they do > ? Also please provide me the respective links to download those two > files. Should I install these two files prior to installing the main > Scilab set up or may I install these two files after the main set up > ? I will really appreciate your information on these. > > Note:- It seems it tries to download some files from internet while > installing, but doesn't succeeds though, because I have VERY SLOW > internet connectivity at my home and therefore I cannot download any > file directly in my laptop. However I have good access of internet > via my mobile phone and therefore if the above mentioned files can be > made available via some link, it would be really nice as then I can > download those files from my mobile and then finally transfer them to > my laptop to complete the installation procedure. > > Thanks ! > -- > With Best Wishes > Vikash Dutt Pandey > -------------- next part -------------- An HTML attachment was scrubbed... URL: From petar.knezevich at gmail.com Fri Jun 3 09:17:25 2011 From: petar.knezevich at gmail.com (Petar Knezevich) Date: Fri, 3 Jun 2011 12:17:25 +0500 Subject: Interactive Plots/Data Visualisation (3D with 2D Slices) Message-ID: Hello everyone, Is there a visual toolkit for building interactive plots? If not, can someone with knowledge contact me? I would like to see if I can adapt existing methods or develop something. An example of what I am doing: Data (real historical data) is of pressure & flow along a pipeline at various locations. I can get the time series at various sample rates (per second, per minute, per hour). I have built plots that allow the user to view the hydraulic profile of the pipeline (pressure head and elevation head vs distance along pipeline (kilometre point)) and I have plots that allow the user to view the trend data at specific locations. The data is currently in excel 2003 and I have built interactive interface with named arrays and slider bars. I would like to build a similar interface in Scilab because then I will have much more capability for data analysis working in Scilab. I attached a sample spreadsheet with two months data, 550 KB compressed (zip). I have other files with 16 months and 4 years of data. When I get into the multi-year data I get to see the seasonal trends along with the daily trends. Regards, Petar Knezevich -------------- next part -------------- A non-text attachment was scrubbed... Name: Pipeline Hydraulic Profile History Rev 0.1.zip Type: application/zip Size: 566034 bytes Desc: not available URL: From vogt at centre-cired.fr Fri Jun 3 11:17:08 2011 From: vogt at centre-cired.fr (Adrien Vogt-Schilb) Date: Fri, 03 Jun 2011 11:17:08 +0200 Subject: [scilab-Users] Problem in scilab-5.3.2_x64 installation. In-Reply-To: References: Message-ID: <4DE8A694.5080808@centre-cired.fr> Hi everybody the problem is probable NOT the Internet connection. I got exactly the same problem when installing scialb in my PC, at work and at home. My colleagues have the same PC, the same connection, and no problem i reported a bug long time ago : http://bugzilla.scilab.org/show_bug.cgi?id=8123 Le 03/06/2011 06:36, Berns Buenaobra a ?crit : > Hello Vikash: > > Its your connectivity - and probably also your ISP provider link. > Maybe downloading a module per module thing and having installed > off-line is better. If there are "faster" internet cafes in town > better do it there - malls are also a possibility on a public WiFi > could also be a possibility. What's your download speed running by the > way? It should be good even at 35KB/s on a week and distant WiFi WAP. > > Berns B. > > > On Fri, Jun 3, 2011 at 1:35 AM, VIKASH . > wrote: > > Dear Scilab authorities, > > I am a new user of Scilab. I have downloaded the main set up wizard > scilab-5.3.2_x64 of 120 MB. While I am trying to instal the software > in my laptop, I am getting the following foue messages in fourpop-up > windows respectively, one after another, before the installation > finishes. The messages are :- > > 1.?Impossible to download Intel Math Kernel Library files for Scilab > (Default library will be used).? > 2. ?Impossible to download FFTW3 library optimized by Intel Math > Kernel Library > (Default library will be used).? > 3.?BLAS, LAPACK reference libraries will be installed and used.? > 4.?FFTW3 reference library will be installed and used.? > > Could you please tell me what are these files all about, what they do > ? Also please provide me the respective links to download those two > files. Should I install these two files prior to installing the main > Scilab set up or may I install these two files after the main set up > ? I will really appreciate your information on these. > > Note:- It seems it tries to download some files from internet while > installing, but doesn't succeeds though, because I have VERY SLOW > internet connectivity at my home and therefore I cannot download any > file directly in my laptop. However I have good access of internet > via my mobile phone and therefore if the above mentioned files can be > made available via some link, it would be really nice as then I can > download those files from my mobile and then finally transfer them to > my laptop to complete the installation procedure. > > Thanks ! > -- > With Best Wishes > Vikash Dutt Pandey > > -- *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 iai at axelspace.com Mon Jun 6 08:02:12 2011 From: iai at axelspace.com (Iai) Date: Sun, 5 Jun 2011 23:02:12 -0700 (PDT) Subject: Missing libraries? [Buffer block] Message-ID: <1307340132513-3028787.post@n3.nabble.com> Hello, When I was trying to use Xcos blocks for FFT downloaded from http://forge.scilab.org/index.php/p/bufferblock/, I got a link error, LNK1181, because either string.lib, scirenderer.lib, or graphics.lib does not exist in a folder, SCI/bin. Does anybody have any idea about those libraries? Any other suggestions would be appreciated. I am using Scilab 5.3.2 32bit on Windows 7. Thank you, Iai -- View this message in context: http://mailinglists.scilab.org/Missing-libraries-Buffer-block-tp3028787p3028787.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From allan.cornet at scilab.org Mon Jun 6 08:19:31 2011 From: allan.cornet at scilab.org (Allan CORNET) Date: Mon, 6 Jun 2011 08:19:31 +0200 Subject: [scilab-Users] Missing libraries? [Buffer block] In-Reply-To: <1307340132513-3028787.post@n3.nabble.com> References: <1307340132513-3028787.post@n3.nabble.com> Message-ID: <010601cc2411$b2788ab0$1769a010$@scilab.org> Hi, Current version on forge requires a local built of scilab. Scirenderer.lib, graphics.lib are not distributed with Scilab binary version Allan -----Message d'origine----- De?: Iai [mailto:iai at axelspace.com] Envoy??: lundi 6 juin 2011 08:02 ??: users at lists.scilab.org Objet?: [scilab-Users] Missing libraries? [Buffer block] Hello, When I was trying to use Xcos blocks for FFT downloaded from http://forge.scilab.org/index.php/p/bufferblock/, I got a link error, LNK1181, because either string.lib, scirenderer.lib, or graphics.lib does not exist in a folder, SCI/bin. Does anybody have any idea about those libraries? Any other suggestions would be appreciated. I am using Scilab 5.3.2 32bit on Windows 7. Thank you, Iai -- View this message in context: http://mailinglists.scilab.org/Missing-libraries-Buffer-block-tp3028787p3028 787.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From ycollette.nospam at free.fr Mon Jun 6 10:02:26 2011 From: ycollette.nospam at free.fr (ycollette.nospam at free.fr) Date: Mon, 6 Jun 2011 10:02:26 +0200 (CEST) Subject: Forge Message-ID: <1896985771.413331307347346400.JavaMail.root@zimbra40-e7.priv.proxad.net> Hello, I don't find any informations on the web page forge.scilab.org on how to create a new forge project ? What do I need to do to cre&ate a new project ? Best regards, YC From simon.gareste at scilab.org Mon Jun 6 10:31:33 2011 From: simon.gareste at scilab.org (Simon GARESTE) Date: Mon, 06 Jun 2011 10:31:33 +0200 Subject: [scilab-Users] Forge In-Reply-To: <1896985771.413331307347346400.JavaMail.root@zimbra40-e7.priv.proxad.net> References: <1896985771.413331307347346400.JavaMail.root@zimbra40-e7.priv.proxad.net> Message-ID: <4DEC9065.1040506@scilab.org> Hi, due to the transition to the new version, I forgot to relink this page, it is now corrected and you can find every relevant information at http://forge.scilab.org/index.php/help/#q-newproject Simon On 06/06/2011 10:02, ycollette.nospam at free.fr wrote: > Hello, > > I don't find any informations on the web page forge.scilab.org on how to create a new forge project ? > What do I need to do to cre&ate a new project ? > > Best regards, > > YC -- Simon Gareste Support& Development Engineer -- Consortium Scilab Digiteo Domaine de Voluceau Rocquencourt - B.P. 105 78153 Le Chesnay Cedex -- From tpaysen at sbcglobal.net Mon Jun 6 18:54:16 2011 From: tpaysen at sbcglobal.net (Tim Paysen) Date: Mon, 6 Jun 2011 09:54:16 -0700 (PDT) Subject: [scilab-Users] Missing libraries? [Buffer block] In-Reply-To: <010601cc2411$b2788ab0$1769a010$@scilab.org> References: <1307340132513-3028787.post@n3.nabble.com> <010601cc2411$b2788ab0$1769a010$@scilab.org> Message-ID: <895564.36123.qm@web80208.mail.mud.yahoo.com> I have Scilab 5.3.1 (and 5.3.2, recently) and can not find anything like Scirenderer.lib on my hard drive, and the only 'graphics.lib' that I have is in the CYGWIN folder.? Are these new to version 5.3.1?? Also--when you say "local build", what do you mean?? (the concept of "make" is ambiguous at best -- it seems to mean different things when using C++, etc...).? Are you just talking about downloading a set of files and putting them together properly, or are you saying to run some C or C++ routines to "make" the executable? (I do see that none of the Xcos demonstrations run in 5.3.2) Tim Paysen ________________________________ From: Allan CORNET To: users at lists.scilab.org Sent: Sun, June 5, 2011 11:19:31 PM Subject: RE: [scilab-Users] Missing libraries? [Buffer block] Hi, Current version on forge requires a local built of scilab. Scirenderer.lib, graphics.lib are not distributed with Scilab binary version Allan -----Message d'origine----- De?: Iai [mailto:iai at axelspace.com] Envoy??: lundi 6 juin 2011 08:02 ??: users at lists.scilab.org Objet?: [scilab-Users] Missing libraries? [Buffer block] Hello, When I was trying to use Xcos blocks for FFT downloaded from http://forge.scilab.org/index.php/p/bufferblock/, I got a link error, LNK1181, because either string.lib, scirenderer.lib, or graphics.lib does not exist in a folder, SCI/bin. Does anybody have any idea about those libraries? Any other suggestions would be appreciated. I am using Scilab 5.3.2 32bit on Windows 7. Thank you, Iai -- View this message in context: http://mailinglists.scilab.org/Missing-libraries-Buffer-block-tp3028787p3028 787.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From calixte at contrib.scilab.org Mon Jun 6 19:04:06 2011 From: calixte at contrib.scilab.org (Calixte Denizet) Date: Mon, 06 Jun 2011 19:04:06 +0200 Subject: [scilab-Users] Missing libraries? [Buffer block] In-Reply-To: <895564.36123.qm@web80208.mail.mud.yahoo.com> References: <1307340132513-3028787.post@n3.nabble.com> <010601cc2411$b2788ab0$1769a010$@scilab.org> <895564.36123.qm@web80208.mail.mud.yahoo.com> Message-ID: <1307379846.27686.369.camel@Calixte-Dell> Hi Tim, Le lundi 06 juin 2011 ? 09:54 -0700, Tim Paysen a ?crit : > I have Scilab 5.3.1 (and 5.3.2, recently) and can not find anything > like Scirenderer.lib on my hard drive, and the only 'graphics.lib' > that I have is in the CYGWIN folder. Are these new to version > 5.3.1? > > Also--when you say "local build", what do you mean? You should compile Scilab by yourself: http://wiki.scilab.org/Compiling%20Scilab%205.x%20under%20Windows Calixte > (the concept of "make" is ambiguous at best -- it seems to mean > different things when using C++, etc...). Are you just talking about > downloading a set of files and putting them together properly, or are > you saying to run some C or C++ routines to "make" the executable? > > (I do see that none of the Xcos demonstrations run in 5.3.2) > > Tim Paysen > > > > ______________________________________________________________________ > From: Allan CORNET > To: users at lists.scilab.org > Sent: Sun, June 5, 2011 11:19:31 PM > Subject: RE: [scilab-Users] Missing libraries? [Buffer block] > > Hi, > > Current version on forge requires a local built of scilab. > > Scirenderer.lib, graphics.lib are not distributed with Scilab binary > version > > Allan > > -----Message d'origine----- > De : Iai [mailto:iai at axelspace.com] > Envoy? : lundi 6 juin 2011 08:02 > ? : users at lists.scilab.org > Objet : [scilab-Users] Missing libraries? [Buffer block] > > Hello, > > When I was trying to use Xcos blocks for FFT downloaded from > http://forge.scilab.org/index.php/p/bufferblock/, I got a link error, > LNK1181, because either string.lib, scirenderer.lib, or graphics.lib > does > not exist in a folder, SCI/bin. > > Does anybody have any idea about those libraries? Any other > suggestions > would be appreciated. > > I am using Scilab 5.3.2 32bit on Windows 7. > > Thank you, > Iai > > > -- > View this message in context: > http://mailinglists.scilab.org/Missing-libraries-Buffer-block-tp3028787p3028 > 787.html > Sent from the Scilab users - Mailing Lists Archives mailing list > archive at > Nabble.com. > > From fweiss at ac-toulouse.fr Mon Jun 6 23:20:03 2011 From: fweiss at ac-toulouse.fr (Francois WEISS) Date: Mon, 6 Jun 2011 23:20:03 +0200 Subject: With Xcos : bug (?) with one computer, but not on an other one References: <1307340132513-3028787.post@n3.nabble.com> <010601cc2411$b2788ab0$1769a010$@scilab.org> <895564.36123.qm@web80208.mail.mud.yahoo.com> <1307379846.27686.369.camel@Calixte-Dell> Message-ID: <739F145C65BA47448DDF4A08FA191466@weiss7ec94d186> Hollo, I am a new user of Scilab 5.3.2 for windows 32 bits. I have seen few times related on web pages the problem below, but never solutions : My problem is that a double-clic on Xcos bloc (or using the parameter menu) must open the parameter window of the block This works fine on the computer with win XP familly ed. SP3 ; proc. AMD semptron 1,8 Ghz ; ram : 448 Mo ; (is installed : Java J2SE runtime environnement 5 update 4 ; and Java 6 update 11). but doesn't work on the computer with win XP familly ed. SP3 ; proc. Intel core2 ; 2,13 Ghz ; ram : 2 Go ; (is installed : Java DB 10.3.1.4 ; and Java 6 update 25 ) The messages bollow are then prompted in the Scilab window : What is wrong on the second computer ?? thanks for answer. Fran?ois WEISS 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.writeBlock(Unknown Source) at org.scilab.modules.xcos.block.BasicBlock.exportBlockStruct(Unknown Source) at org.scilab.modules.xcos.block.BasicBlock.openBlockSettings(Unknown Source) at org.scilab.modules.xcos.graph.swing.handler.GraphHandler.openBlock(Unknown Source) at org.scilab.modules.xcos.graph.swing.handler.GraphHandler.mouseClicked(Unknown Source) at java.awt.AWTEventMulticaster.mouseClicked(Unknown Source) at java.awt.AWTEventMulticaster.mouseClicked(Unknown Source) at java.awt.AWTEventMulticaster.mouseClicked(Unknown Source) at java.awt.AWTEventMulticaster.mouseClicked(Unknown Source) at java.awt.AWTEventMulticaster.mouseClicked(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._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.block.BasicBlock.exportContext(Unknown Source) at org.scilab.modules.xcos.block.BasicBlock.openBlockSettings(Unknown Source) at org.scilab.modules.xcos.graph.swing.handler.GraphHandler.openBlock(Unknown Source) at org.scilab.modules.xcos.graph.swing.handler.GraphHandler.mouseClicked(Unknown Source) at java.awt.AWTEventMulticaster.mouseClicked(Unknown Source) at java.awt.AWTEventMulticaster.mouseClicked(Unknown Source) at java.awt.AWTEventMulticaster.mouseClicked(Unknown Source) at java.awt.AWTEventMulticaster.mouseClicked(Unknown Source) at java.awt.AWTEventMulticaster.mouseClicked(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._H5Dcreate(Native Method) at ncsa.hdf.hdf5lib.H5.H5Dcreate(H5.java:797) at org.scilab.modules.hdf5.write.H5WriteScilabString.writeInDataSet(Unknown Source) at org.scilab.modules.hdf5.write.H5Write.writeInDataSet(Unknown Source) at org.scilab.modules.xcos.block.BasicBlock.exportContext(Unknown Source) at org.scilab.modules.xcos.block.BasicBlock.openBlockSettings(Unknown Source) at org.scilab.modules.xcos.graph.swing.handler.GraphHandler.openBlock(Unknown Source) at org.scilab.modules.xcos.graph.swing.handler.GraphHandler.mouseClicked(Unknown Source) at java.awt.AWTEventMulticaster.mouseClicked(Unknown Source) at java.awt.AWTEventMulticaster.mouseClicked(Unknown Source) at java.awt.AWTEventMulticaster.mouseClicked(Unknown Source) at java.awt.AWTEventMulticaster.mouseClicked(Unknown Source) at java.awt.AWTEventMulticaster.mouseClicked(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) Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException at org.scilab.modules.xcos.block.BasicBlock.openBlockSettings(Unknown Source) at org.scilab.modules.xcos.graph.swing.handler.GraphHandler.openBlock(Unknown Source) at org.scilab.modules.xcos.graph.swing.handler.GraphHandler.mouseClicked(Unknown Source) at java.awt.AWTEventMulticaster.mouseClicked(Unknown Source) at java.awt.AWTEventMulticaster.mouseClicked(Unknown Source) at java.awt.AWTEventMulticaster.mouseClicked(Unknown Source) at java.awt.AWTEventMulticaster.mouseClicked(Unknown Source) at java.awt.AWTEventMulticaster.mouseClicked(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) From shall1944 at hotmail.com Tue Jun 7 03:40:04 2011 From: shall1944 at hotmail.com (steve hall) Date: Mon, 6 Jun 2011 20:40:04 -0500 Subject: Scilab users - Mailing Lists Archives Message-ID: Hello, My Scilab version is 5.3.2. I used scilab2c to generate a c program from a scilab program. When I build the resulting C program in visual studio 2010 pro I get the linker errors shown below. The same issue occurs in Visual Studio 8 express edition. I've set the additional library directories to the directory that contains blasplus.lib and lapack.lib and also set the additional dependencies to be blasplus.lib;lapack.lib. Does anyone know what's causing this issue? Thanks, Steven 1>cacoss.obj : error LNK2001: unresolved external symbol _dlamch_ 1>cchola.obj : error LNK2001: unresolved external symbol _zpotrf_ 1>cdeterma.obj : error LNK2001: unresolved external symbol _zgetrf_ 1>dchola.obj : error LNK2001: unresolved external symbol _dpotrf_ 1>ddeterma.obj : error LNK2001: unresolved external symbol _dgetrf_ 1>dinverma.obj : error LNK2001: unresolved external symbol _dgetri_ 1>dldivma.obj : error LNK2001: unresolved external symbol _dgecon_ 1>dldivma.obj : error LNK2001: unresolved external symbol _dlange_ 1>dldivma.obj : error LNK2001: unresolved external symbol _dlacpy_ 1>dldivma.obj : error LNK2001: unresolved external symbol _dgelsy_ 1>dldivma.obj : error LNK2001: unresolved external symbol _dgetrs_ 1>dmulma.obj : error LNK2001: unresolved external symbol _dgemm_ 1>dspec2a.obj : error LNK2001: unresolved external symbol _dgeev_ 1>dspec2a.obj : error LNK2001: unresolved external symbol _dsyev_ 1>zfftma.obj : error LNK2001: unresolved external symbol _zcopy_ 1>zinverma.obj : error LNK2001: unresolved external symbol _zgetri_ 1>zldivma.obj : error LNK2001: unresolved external symbol _zlacpy_ 1>zldivma.obj : error LNK2001: unresolved external symbol _zgelsy_ 1>zldivma.obj : error LNK2001: unresolved external symbol _zgecon_ 1>zldivma.obj : error LNK2001: unresolved external symbol _zlange_ 1>zldivma.obj : error LNK2001: unresolved external symbol _zgetrs_ 1>zspec2a.obj : error LNK2001: unresolved external symbol _zheev_ 1>zspec2a.obj : error LNK2001: unresolved external symbol _zgeev_ 1>C:\Users\earth\documents\visual studio 2010\Projects\testconvert1\Release\testconvert1.exe : fatal error LNK1120: 23 unresolved externals -------------- next part -------------- An HTML attachment was scrubbed... URL: From shall1944 at hotmail.com Tue Jun 7 06:36:44 2011 From: shall1944 at hotmail.com (steve hall) Date: Mon, 6 Jun 2011 23:36:44 -0500 Subject: Unresolved external symbol while building scilab2c generated code in Visual Studio Message-ID: Hello, I used scilab2c to generate a c program from a scilab program. When I build the resulting C program in visual studio 2010 pro I get the linker errors shown below. The same issue occurs in Visual Studio 8 express edition. I've set the additional library directories to the directory that contains blasplus.lib and lapack.lib and also set the additional dependencies to be blasplus.lib;lapack.lib. I'm running scilab-5.3.2_x64 on Windows 7. Does anyone know what's causing this issue? PS: Disregard my previous post with messed up subject line - hopefully it will be deleted. Thanks, Steven 1>cacoss.obj : error LNK2001: unresolved external symbol _dlamch_ 1>cchola.obj : error LNK2001: unresolved external symbol _zpotrf_ 1>cdeterma.obj : error LNK2001: unresolved external symbol _zgetrf_ 1>dchola.obj : error LNK2001: unresolved external symbol _dpotrf_ 1>ddeterma.obj : error LNK2001: unresolved external symbol _dgetrf_ 1>dinverma.obj : error LNK2001: unresolved external symbol _dgetri_ 1>dldivma.obj : error LNK2001: unresolved external symbol _dgecon_ 1>dldivma.obj : error LNK2001: unresolved external symbol _dlange_ 1>dldivma.obj : error LNK2001: unresolved external symbol _dlacpy_ 1>dldivma.obj : error LNK2001: unresolved external symbol _dgelsy_ 1>dldivma.obj : error LNK2001: unresolved external symbol _dgetrs_ 1>dmulma.obj : error LNK2001: unresolved external symbol _dgemm_ 1>dspec2a.obj : error LNK2001: unresolved external symbol _dgeev_ 1>dspec2a.obj : error LNK2001: unresolved external symbol _dsyev_ 1>zfftma.obj : error LNK2001: unresolved external symbol _zcopy_ 1>zinverma.obj : error LNK2001: unresolved external symbol _zgetri_ 1>zldivma.obj : error LNK2001: unresolved external symbol _zlacpy_ 1>zldivma.obj : error LNK2001: unresolved external symbol _zgelsy_ 1>zldivma.obj : error LNK2001: unresolved external symbol _zgecon_ 1>zldivma.obj : error LNK2001: unresolved external symbol _zlange_ 1>zldivma.obj : error LNK2001: unresolved external symbol _zgetrs_ 1>zspec2a.obj : error LNK2001: unresolved external symbol _zheev_ 1>zspec2a.obj : error LNK2001: unresolved external symbol _zgeev_ 1>C:\Users\earth\documents\visual studio 2010\Projects\testconvert1\Release\testconvert1.exe : fatal error LNK1120: 23 unresolved externals -------------- next part -------------- An HTML attachment was scrubbed... URL: From manueldelcristo1 at gmail.com Tue Jun 7 02:25:28 2011 From: manueldelcristo1 at gmail.com (Manuel DelCristo) Date: Mon, 6 Jun 2011 19:25:28 -0500 Subject: Make a comercial proyect Message-ID: Hello, our names are Manuel Gonz?lez and Jhon Castillo, we are from Colombia, and we are starting a proyect in artificial intelillence, we are thinking in to use Scilab, because we know it is free software, but we want to know if we can comecializate our poryect after we finish it, ?is there any problem with the licence of Scilab?. Very much thanks for the attention. Best regards! Manuel Gonz?lez Jhon Castillo -------------- next part -------------- An HTML attachment was scrubbed... URL: From sylvestre.ledru at scilab.org Tue Jun 7 08:41:31 2011 From: sylvestre.ledru at scilab.org (Sylvestre Ledru) Date: Tue, 07 Jun 2011 08:41:31 +0200 Subject: [scilab-Users] Make a comercial proyect In-Reply-To: References: Message-ID: <1307428891.11719.72.camel@losinj.inria.fr> Le lundi 06 juin 2011 ? 19:25 -0500, Manuel DelCristo a ?crit : > Hello, our names are Manuel Gonz?lez and Jhon Castillo, we are from > Colombia, and we are starting a proyect in artificial intelillence, we > are thinking in to use Scilab, because we know it is free software, > but we want to know if we can comecializate our poryect after we > finish it, ?is there any problem with the licence of Scilab?. Yes, you can commercialize your project based on Scilab. Sylvestre From tpaysen at sbcglobal.net Tue Jun 7 09:40:49 2011 From: tpaysen at sbcglobal.net (Tim Paysen) Date: Tue, 7 Jun 2011 00:40:49 -0700 (PDT) Subject: [scilab-Users] Missing libraries? [Buffer block] In-Reply-To: <1307379846.27686.369.camel@Calixte-Dell> References: <1307340132513-3028787.post@n3.nabble.com> <010601cc2411$b2788ab0$1769a010$@scilab.org> <895564.36123.qm@web80208.mail.mud.yahoo.com> <1307379846.27686.369.camel@Calixte-Dell> Message-ID: <449178.50525.qm@web80205.mail.mud.yahoo.com> Thanks for the reference. TP ________________________________ From: Calixte Denizet To: users at lists.scilab.org Sent: Mon, June 6, 2011 10:04:06 AM Subject: Re: [scilab-Users] Missing libraries? [Buffer block] Hi Tim, Le lundi 06 juin 2011 ? 09:54 -0700, Tim Paysen a ?crit : > I have Scilab 5.3.1 (and 5.3.2, recently) and can not find anything > like Scirenderer.lib on my hard drive, and the only 'graphics.lib' > that I have is in the CYGWIN folder.? Are these new to version > 5.3.1?? >? > Also--when you say "local build", what do you mean? You should compile Scilab by yourself: http://wiki.scilab.org/Compiling%20Scilab%205.x%20under%20Windows Calixte > (the concept of "make" is ambiguous at best -- it seems to mean > different things when using C++, etc...).? Are you just talking about > downloading a set of files and putting them together properly, or are > you saying to run some C or C++ routines to "make" the executable? >? > (I do see that none of the Xcos demonstrations run in 5.3.2) >? > Tim Paysen > > > > ______________________________________________________________________ > From: Allan CORNET > To: users at lists.scilab.org > Sent: Sun, June 5, 2011 11:19:31 PM > Subject: RE: [scilab-Users] Missing libraries? [Buffer block] > > Hi, > > Current version on forge requires a local built of scilab. > > Scirenderer.lib, graphics.lib are not distributed with Scilab binary > version > > Allan > > -----Message d'origine----- > De : Iai [mailto:iai at axelspace.com] > Envoy? : lundi 6 juin 2011 08:02 > ? : users at lists.scilab.org > Objet : [scilab-Users] Missing libraries? [Buffer block] > > Hello, > > When I was trying to use Xcos blocks for FFT downloaded from > http://forge.scilab.org/index.php/p/bufferblock/, I got a link error, > LNK1181, because either string.lib, scirenderer.lib, or graphics.lib > does > not exist in a folder, SCI/bin. > > Does anybody have any idea about those libraries? Any other > suggestions > would be appreciated. > > I am using Scilab 5.3.2 32bit on Windows 7. > > Thank you, > Iai > > > -- > View this message in context: > http://mailinglists.scilab.org/Missing-libraries-Buffer-block-tp3028787p3028 > 787.html > Sent from the Scilab users - Mailing Lists Archives mailing list > archive at > Nabble.com. > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From allan.cornet at scilab.org Tue Jun 7 09:56:57 2011 From: allan.cornet at scilab.org (Allan CORNET) Date: Tue, 7 Jun 2011 09:56:57 +0200 Subject: [scilab-Users] Unresolved external symbol while building scilab2c generated code in Visual Studio In-Reply-To: References: Message-ID: <004101cc24e8$795c3380$6c149a80$@scilab.org> Hi, Do you build with x64 target or 32 bit on Windows 64 bit? Please check that you link blasplus.lib and lapack.lib to your project with the good target. Allan De : steve hall [mailto:shall1944 at hotmail.com] Envoy? : mardi 7 juin 2011 06:37 ? : users at lists.scilab.org Objet : [scilab-Users] Unresolved external symbol while building scilab2c generated code in Visual Studio Hello, I used scilab2c to generate a c program from a scilab program. When I build the resulting C program in visual studio 2010 pro I get the linker errors shown below. The same issue occurs in Visual Studio 8 express edition. I've set the additional library directories to the directory that contains blasplus.lib and lapack.lib and also set the additional dependencies to be blasplus.lib;lapack.lib. I'm running scilab-5.3.2_x64 on Windows 7. Does anyone know what's causing this issue? PS: Disregard my previous post with messed up subject line - hopefully it will be deleted. Thanks, Steven 1>cacoss.obj : error LNK2001: unresolved external symbol _dlamch_ 1>cchola.obj : error LNK2001: unresolved external symbol _zpotrf_ 1>cdeterma.obj : error LNK2001: unresolved external symbol _zgetrf_ 1>dchola.obj : error LNK2001: unresolved external symbol _dpotrf_ 1>ddeterma.obj : error LNK2001: unresolved external symbol _dgetrf_ 1>dinverma.obj : error LNK2001: unresolved external symbol _dgetri_ 1>dldivma.obj : error LNK2001: unresolved external symbol _dgecon_ 1>dldivma.obj : error LNK2001: unresolved external symbol _dlange_ 1>dldivma.obj : error LNK2001: unresolved external symbol _dlacpy_ 1>dldivma.obj : error LNK2001: unresolved external symbol _dgelsy_ 1>dldivma.obj : error LNK2001: unresolved external symbol _dgetrs_ 1>dmulma.obj : error LNK2001: unresolved external symbol _dgemm_ 1>dspec2a.obj : error LNK2001: unresolved external symbol _dgeev_ 1>dspec2a.obj : error LNK2001: unresolved external symbol _dsyev_ 1>zfftma.obj : error LNK2001: unresolved external symbol _zcopy_ 1>zinverma.obj : error LNK2001: unresolved external symbol _zgetri_ 1>zldivma.obj : error LNK2001: unresolved external symbol _zlacpy_ 1>zldivma.obj : error LNK2001: unresolved external symbol _zgelsy_ 1>zldivma.obj : error LNK2001: unresolved external symbol _zgecon_ 1>zldivma.obj : error LNK2001: unresolved external symbol _zlange_ 1>zldivma.obj : error LNK2001: unresolved external symbol _zgetrs_ 1>zspec2a.obj : error LNK2001: unresolved external symbol _zheev_ 1>zspec2a.obj : error LNK2001: unresolved external symbol _zgeev_ 1>C:\Users\earth\documents\visual studio 2010\Projects\testconvert1\Release\testconvert1.exe : fatal error LNK1120: 23 unresolved externals -------------- next part -------------- An HTML attachment was scrubbed... URL: From ludo.wag at laposte.net Tue Jun 7 14:30:11 2011 From: ludo.wag at laposte.net (Orbeman) Date: Tue, 7 Jun 2011 05:30:11 -0700 (PDT) Subject: Function fit_data with several curves dependent on parameters Message-ID: <1307449811364-3034239.post@n3.nabble.com> Hello, I envisage to use simply the function fit_dat for optimize my parameters identification. I've some points to approximate with an analytic relation. The points are issued from different curves with a parameter (speed) that I know the value. The analytical relation depend on 4 more parameters that I don't know values but I can give an initial guess. So, it is possible to fit (with a simply function like fit_dat) several curves with a constraint parameter (speed) for each curves ? Thanks you ! -- View this message in context: http://mailinglists.scilab.org/Function-fit-data-with-several-curves-dependent-on-parameters-tp3034239p3034239.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From frederic.jourdin at shom.fr Tue Jun 7 14:42:00 2011 From: frederic.jourdin at shom.fr (Frederic Jourdin) Date: Tue, 07 Jun 2011 14:42:00 +0200 Subject: [scilab-Users] Function fit_data with several curves dependent on parameters In-Reply-To: <1307449811364-3034239.post@n3.nabble.com> References: <1307449811364-3034239.post@n3.nabble.com> Message-ID: <4DEE1C98.3070502@shom.fr> Hi, if you know the parameter "speed" so you only have to remove "speed" from the list of (unknown) parameters of your function. regards Fred Orbeman a ?crit : > Hello, > > I envisage to use simply the function fit_dat for optimize my parameters > identification. I've some points to approximate with an analytic relation. > The points are issued from different curves with a parameter (speed) that I > know the value. > > The analytical relation depend on 4 more parameters that I don't know values > but I can give an initial guess. > > So, it is possible to fit (with a simply function like fit_dat) several > curves with a constraint parameter (speed) for each curves ? > > Thanks you ! > > -- > View this message in context: http://mailinglists.scilab.org/Function-fit-data-with-several-curves-dependent-on-parameters-tp3034239p3034239.html > Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. > From ludo.wag at laposte.net Tue Jun 7 15:15:59 2011 From: ludo.wag at laposte.net (Orbeman) Date: Tue, 7 Jun 2011 06:15:59 -0700 (PDT) Subject: Function fit_data with several curves dependent on parameters In-Reply-To: <4DEE1C98.3070502@shom.fr> References: <1307449811364-3034239.post@n3.nabble.com> <4DEE1C98.3070502@shom.fr> Message-ID: <1307452559588-3034391.post@n3.nabble.com> It's not really simple. The analytic law is y=(A+B*x^n)(1+C*ln(v/0.0001)), named Johnson-Cook (stress/plastic strain). The unknow parameters are A,B,n and C. I've several curbes obtained with different speed (v) : curve 1 with v=v1,..., curve i with v=vi (vi<>vj). In future, I envisage to complexify the law with temperature with the factor (1-((T-Tt)/(Tm-Tt))^m) and the unknow parameter m. Thank you ! -- View this message in context: http://mailinglists.scilab.org/Function-fit-data-with-several-curves-dependent-on-parameters-tp3034239p3034391.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From paul.carrico at esterline.com Tue Jun 7 15:22:38 2011 From: paul.carrico at esterline.com (Carrico, Paul) Date: Tue, 7 Jun 2011 15:22:38 +0200 Subject: [scilab-Users] Re: Function fit_data with several curves dependent on parameters In-Reply-To: <1307452559588-3034391.post@n3.nabble.com> References: <1307449811364-3034239.post@n3.nabble.com> <4DEE1C98.3070502@shom.fr> <1307452559588-3034391.post@n3.nabble.com> Message-ID: <55A12CBC06A8C9459DCE0BBEF8122FDC0498B367@exchsrv.AUXITROL1> In Johnson-Cook law, we speak about "Strain rate = epsilon_dot" and not about speed !!!!! Typically used in Impact items (explicit solver) to take into account the material feature changes depending on the strain rate (different from a static test) !!!!! Paul -----Message d'origine----- De : Orbeman [mailto:ludo.wag at laposte.net] Envoy? : mardi 7 juin 2011 15:16 ? : users at lists.scilab.org Objet : [scilab-Users] Re: Function fit_data with several curves dependent on parameters It's not really simple. The analytic law is y=(A+B*x^n)(1+C*ln(v/0.0001)), named Johnson-Cook (stress/plastic strain). The unknow parameters are A,B,n and C. I've several curbes obtained with different speed (v) : curve 1 with v=v1,..., curve i with v=vi (vi<>vj). In future, I envisage to complexify the law with temperature with the factor (1-((T-Tt)/(Tm-Tt))^m) and the unknow parameter m. Thank you ! -- View this message in context: http://mailinglists.scilab.org/Function-fit-data-with-several-curves-dependent-on-parameters-tp3034239p3034391.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. -------------------------------------------------------------------------------- Le pr?sent mail et ses pi?ces jointes sont confidentiels et destin?s ? la personne ou aux personnes vis?e(s) ci-dessus. Si vous avez re?u cet e-mail par erreur, veuillez contacter imm?diatement l'exp?diteur et effacer le message de votre syst?me. Toute divulgation, copie ou distribution de cet e-mail est strictement interdite. This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please contact the sender and delete the email from your system. If you are not the named addressee you should not disseminate, distribute or copy this email. From ludo.wag at laposte.net Tue Jun 7 15:40:54 2011 From: ludo.wag at laposte.net (Orbeman) Date: Tue, 7 Jun 2011 06:40:54 -0700 (PDT) Subject: Function fit_data with several curves dependent on parameters In-Reply-To: <55A12CBC06A8C9459DCE0BBEF8122FDC0498B367@exchsrv.AUXITROL1> References: <1307449811364-3034239.post@n3.nabble.com> <4DEE1C98.3070502@shom.fr> <1307452559588-3034391.post@n3.nabble.com> <55A12CBC06A8C9459DCE0BBEF8122FDC0498B367@exchsrv.AUXITROL1> Message-ID: <1307454054282-3034496.post@n3.nabble.com> Ok, you're right but a use the word speed to be more genral. In my native language (french), it is understable to use the word speed for the strain rate. I've also curves with various strain rate during the increase of strain. I hope also to simulate the law with Abaqus in the future. But first I've to identify optimized parameters. -- View this message in context: http://mailinglists.scilab.org/Function-fit-data-with-several-curves-dependent-on-parameters-tp3034239p3034496.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From paul.carrico at esterline.com Tue Jun 7 15:56:38 2011 From: paul.carrico at esterline.com (Carrico, Paul) Date: Tue, 7 Jun 2011 15:56:38 +0200 Subject: [scilab-Users] Re: Function fit_data with several curves dependent on parameters In-Reply-To: <1307454054282-3034496.post@n3.nabble.com> References: <1307449811364-3034239.post@n3.nabble.com> <4DEE1C98.3070502@shom.fr> <1307452559588-3034391.post@n3.nabble.com> <55A12CBC06A8C9459DCE0BBEF8122FDC0498B367@exchsrv.AUXITROL1> <1307454054282-3034496.post@n3.nabble.com> Message-ID: <55A12CBC06A8C9459DCE0BBEF8122FDC0498B369@exchsrv.AUXITROL1> In french (that's my native language as well) we speak about "vitesse de d?formation" !!!!! To fit the different parameters, it's typically an optimization process => in my opinion you've to: - simulate exactly the tests at different strain rates, - calculate the SSE (Sum square of errors = erreurs au sens des moindres carr?s) between the test curves and the FEA ones - ask Scilab to minimize the SSE using simplex methods (see fminsearch for unbounded parameters or Nelder-Mead for bounded ones) / a gradient method (see optim) / genetic algorithms / Etc. ... Nota : a loop = a set of FEAs (1 FEA per curve) Paul PS : what kind of tests did you perform ? -----Message d'origine----- De : Orbeman [mailto:ludo.wag at laposte.net] Envoy? : mardi 7 juin 2011 15:41 ? : users at lists.scilab.org Objet : [scilab-Users] Re: Function fit_data with several curves dependent on parameters Ok, you're right but a use the word speed to be more genral. In my native language (french), it is understable to use the word speed for the strain rate. I've also curves with various strain rate during the increase of strain. I hope also to simulate the law with Abaqus in the future. But first I've to identify optimized parameters. -- View this message in context: http://mailinglists.scilab.org/Function-fit-data-with-several-curves-dependent-on-parameters-tp3034239p3034496.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. -------------------------------------------------------------------------------- Le pr?sent mail et ses pi?ces jointes sont confidentiels et destin?s ? la personne ou aux personnes vis?e(s) ci-dessus. Si vous avez re?u cet e-mail par erreur, veuillez contacter imm?diatement l'exp?diteur et effacer le message de votre syst?me. Toute divulgation, copie ou distribution de cet e-mail est strictement interdite. This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please contact the sender and delete the email from your system. If you are not the named addressee you should not disseminate, distribute or copy this email. From ludo.wag at laposte.net Tue Jun 7 16:29:26 2011 From: ludo.wag at laposte.net (Orbeman) Date: Tue, 7 Jun 2011 07:29:26 -0700 (PDT) Subject: Function fit_data with several curves dependent on parameters In-Reply-To: <55A12CBC06A8C9459DCE0BBEF8122FDC0498B369@exchsrv.AUXITROL1> References: <1307449811364-3034239.post@n3.nabble.com> <4DEE1C98.3070502@shom.fr> <1307452559588-3034391.post@n3.nabble.com> <55A12CBC06A8C9459DCE0BBEF8122FDC0498B367@exchsrv.AUXITROL1> <1307454054282-3034496.post@n3.nabble.com> <55A12CBC06A8C9459DCE0BBEF8122FDC0498B369@exchsrv.AUXITROL1> Message-ID: <1307456966593-3034675.post@n3.nabble.com> Ok, as you wish for the strain rate ... If I use only one curve there is an infinite number of set of parameters, but Scilab compute seemingly one ! Sorry, I don't understand what do you mentioned with "tests" (exprimentation which provide data or numerical tests ?) If I use 2 curves with different strain rate . I've to compute 4 optimization ? The SSE with a optimize methods quive me the best of this 4 set of parameters ? -- View this message in context: http://mailinglists.scilab.org/Function-fit-data-with-several-curves-dependent-on-parameters-tp3034239p3034675.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From shall1944 at hotmail.com Tue Jun 7 21:23:14 2011 From: shall1944 at hotmail.com (shall1944) Date: Tue, 7 Jun 2011 12:23:14 -0700 (PDT) Subject: Unresolved external symbol while building scilab2c generated code in Visual Studio In-Reply-To: <004101cc24e8$795c3380$6c149a80$@scilab.org> References: <004101cc24e8$795c3380$6c149a80$@scilab.org> Message-ID: <1307474594954-3036129.post@n3.nabble.com> I was building a Win32 target. I fixed the issue by creating and building a x64 target (see http://msdn.microsoft.com/en-us/library/9yb4317s(v=vs.80).aspx). Thanks, Steven -- View this message in context: http://mailinglists.scilab.org/Unresolved-external-symbol-while-building-scilab2c-generated-code-in-Visual-Studio-tp3033120p3036129.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From paul.carrico at esterline.com Wed Jun 8 12:09:56 2011 From: paul.carrico at esterline.com (Carrico, Paul) Date: Wed, 8 Jun 2011 12:09:56 +0200 Subject: Volume calculation from closed meshed surface Message-ID: <55A12CBC06A8C9459DCE0BBEF8122FDC0498B36C@exchsrv.AUXITROL1> Dear All, I know it's possible to calculate the volume from a meshed closed surface (triangle, quads or mixed quads/triangle) ... Does somebody can give me some advices in finding documents and algorithmes ? Thanks in avances Paul -------------------------------------------------------------------------------- Le pr?sent mail et ses pi?ces jointes sont confidentiels et destin?s ? la personne ou aux personnes vis?e(s) ci-dessus. Si vous avez re?u cet e-mail par erreur, veuillez contacter imm?diatement l'exp?diteur et effacer le message de votre syst?me. Toute divulgation, copie ou distribution de cet e-mail est strictement interdite. This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please contact the sender and delete the email from your system. If you are not the named addressee you should not disseminate, distribute or copy this email. -------------- next part -------------- An HTML attachment was scrubbed... URL: From vogt at centre-cired.fr Wed Jun 8 12:47:45 2011 From: vogt at centre-cired.fr (Adrien Vogt-Schilb) Date: Wed, 08 Jun 2011 12:47:45 +0200 Subject: [scilab-Users] Volume calculation from closed meshed surface In-Reply-To: <55A12CBC06A8C9459DCE0BBEF8122FDC0498B36C@exchsrv.AUXITROL1> References: <55A12CBC06A8C9459DCE0BBEF8122FDC0498B36C@exchsrv.AUXITROL1> Message-ID: <4DEF5351.6020209@centre-cired.fr> Hi, That sounds like good old Green-*Ostrogradsky theorem* http://en.wikipedia.org/wiki/Divergence_theorem Hope it helps On 08/06/2011 12:09, Carrico, Paul wrote: > Dear All, > I know it's possible to calculate the volume from a meshed closed > surface (triangle, quads or mixed quads/triangle) ... > Does somebody can give me some advices in finding documents and > algorithmes ? > Thanks in avances > Paul > -------------------------------------------------------------------------------- > > > Le pr?sent mail et ses pi?ces jointes sont confidentiels et destin?s ? la personne ou aux personnes vis?e(s) ci-dessus. Si vous avez re?u cet e-mail par erreur, veuillez contacter imm?diatement l'exp?diteur et effacer le message de votre syst?me. Toute divulgation, copie ou distribution de cet e-mail est strictement interdite. > > This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please contact the sender and delete the email from your system. If you are not the named addressee you should not disseminate, distribute or copy this email. > > -- *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 paul.carrico at esterline.com Wed Jun 8 13:34:57 2011 From: paul.carrico at esterline.com (Carrico, Paul) Date: Wed, 8 Jun 2011 13:34:57 +0200 Subject: [scilab-Users] Volume calculation from closed meshed surface In-Reply-To: <4DEF5351.6020209@centre-cired.fr> References: <55A12CBC06A8C9459DCE0BBEF8122FDC0498B36C@exchsrv.AUXITROL1> <4DEF5351.6020209@centre-cired.fr> Message-ID: <55A12CBC06A8C9459DCE0BBEF8122FDC0498B36F@exchsrv.AUXITROL1> yes I know ... (and thanks for your email) ; nevertheless I've been supposing that specific (and robust) algorithms exists for typical mesh applications (taking into account the kind of elements i.e. triangel or quads / linear or quadratic elements etc. ...) then I'm looking for some literature ... Paul ________________________________ De : Adrien Vogt-Schilb [mailto:vogt at centre-cired.fr] Envoy? : mercredi 8 juin 2011 12:48 ? : users at lists.scilab.org Objet : Re: [scilab-Users] Volume calculation from closed meshed surface Hi, That sounds like good old Green-Ostrogradsky theorem http://en.wikipedia.org/wiki/Divergence_theorem Hope it helps On 08/06/2011 12:09, Carrico, Paul wrote: Dear All, I know it's possible to calculate the volume from a meshed closed surface (triangle, quads or mixed quads/triangle) ... Does somebody can give me some advices in finding documents and algorithmes ? Thanks in avances Paul -------------------------------------------------------------------------------- Le pr?sent mail et ses pi?ces jointes sont confidentiels et destin?s ? la personne ou aux personnes vis?e(s) ci-dessus. Si vous avez re?u cet e-mail par erreur, veuillez contacter imm?diatement l'exp?diteur et effacer le message de votre syst?me. Toute divulgation, copie ou distribution de cet e-mail est strictement interdite. This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please contact the sender and delete the email from your system. If you are not the named addressee you should not disseminate, distribute or copy this email. -- Adrien Vogt-Schilb Research Fellow vogt at centre-cired.fr Tel: (+33) 1 43 94 73 96 Fax: (+33) 1 43 94 73 70 45 bis, Av de la Belle Gabrielle F-94736 Nogent-sur-Marne http://www.centre-cired.fr/ -------------------------------------------------------------------------------- Le pr?sent mail et ses pi?ces jointes sont confidentiels et destin?s ? la personne ou aux personnes vis?e(s) ci-dessus. Si vous avez re?u cet e-mail par erreur, veuillez contacter imm?diatement l'exp?diteur et effacer le message de votre syst?me. Toute divulgation, copie ou distribution de cet e-mail est strictement interdite. This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please contact the sender and delete the email from your system. If you are not the named addressee you should not disseminate, distribute or copy this email. -------------- 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: logocired.png URL: From Samuel.Gougeon at univ-lemans.fr Wed Jun 8 14:13:04 2011 From: Samuel.Gougeon at univ-lemans.fr (Samuel GOUGEON) Date: Wed, 08 Jun 2011 14:13:04 +0200 Subject: [scilab-Users] Volume calculation from closed meshed surface In-Reply-To: <55A12CBC06A8C9459DCE0BBEF8122FDC0498B36C@exchsrv.AUXITROL1> References: <55A12CBC06A8C9459DCE0BBEF8122FDC0498B36C@exchsrv.AUXITROL1> Message-ID: <4DEF6750.2080606@univ-lemans.fr> Hello, ----- Message d'origine ----- De : Carrico, Paul Date : 08/06/2011 12:09: > Dear All, > I know it's possible to calculate the volume from a meshed closed surface > (triangle, quads or mixed quads/triangle) ... > Does somebody can give me some advices in finding documents and algorithmes ? It depends on - which type of facets you are using (triangles, quads) - which type of vertices coordinates you are using (cartesian, cylindrical, spherical) - which type of interpolation you are using over verticed facets : linear, quadratic, cubic.. Moreover, the shape of the volume is of importance : without / with holes (ex: sphere / torus), holes internal or connected to the outer space, etc... All this stuff is about finite elements. So, many references about F.E. should be convenient. HTH Samuel -------------- next part -------------- An HTML attachment was scrubbed... URL: From paul.carrico at esterline.com Wed Jun 8 14:23:48 2011 From: paul.carrico at esterline.com (Carrico, Paul) Date: Wed, 8 Jun 2011 14:23:48 +0200 Subject: [scilab-Users] Volume calculation from closed meshed surface In-Reply-To: <4DEF6750.2080606@univ-lemans.fr> References: <55A12CBC06A8C9459DCE0BBEF8122FDC0498B36C@exchsrv.AUXITROL1> <4DEF6750.2080606@univ-lemans.fr> Message-ID: <55A12CBC06A8C9459DCE0BBEF8122FDC0498B370@exchsrv.AUXITROL1> Dear Samuel, - The type of facets are either triangles or quads (or both for a mesh using mixed elements), - the type of interpolation can be either linear or quadratic where some nodes traduces the curvature .... (for mechanical FEA) - coordinate system => cartesian one - kind of shape : has a torus to be treated different than a simple sphere ? I have some information's on closed surfaces using triangles ... of course a solution is to "split" all the elements into 3 nodes triangles ... but is it the simpliest way ? the most robust one ? Paul ________________________________ De : Samuel GOUGEON [mailto:Samuel.Gougeon at univ-lemans.fr] Envoy? : mercredi 8 juin 2011 14:13 ? : users at lists.scilab.org Objet : Re: [scilab-Users] Volume calculation from closed meshed surface Hello, ----- Message d'origine ----- De : Carrico, Paul Date : 08/06/2011 12:09: Dear All, I know it's possible to calculate the volume from a meshed closed surface (triangle, quads or mixed quads/triangle) ... Does somebody can give me some advices in finding documents and algorithmes ? It depends on - which type of facets you are using (triangles, quads) - which type of vertices coordinates you are using (cartesian, cylindrical, spherical) - which type of interpolation you are using over verticed facets : linear, quadratic, cubic.. Moreover, the shape of the volume is of importance : without / with holes (ex: sphere / torus), holes internal or connected to the outer space, etc... All this stuff is about finite elements. So, many references about F.E. should be convenient. HTH Samuel -------------------------------------------------------------------------------- Le pr?sent mail et ses pi?ces jointes sont confidentiels et destin?s ? la personne ou aux personnes vis?e(s) ci-dessus. Si vous avez re?u cet e-mail par erreur, veuillez contacter imm?diatement l'exp?diteur et effacer le message de votre syst?me. Toute divulgation, copie ou distribution de cet e-mail est strictement interdite. This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please contact the sender and delete the email from your system. If you are not the named addressee you should not disseminate, distribute or copy this email. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Samuel.Gougeon at univ-lemans.fr Wed Jun 8 14:36:15 2011 From: Samuel.Gougeon at univ-lemans.fr (Samuel GOUGEON) Date: Wed, 08 Jun 2011 14:36:15 +0200 Subject: [scilab-Users] Volume calculation from closed meshed surface In-Reply-To: <55A12CBC06A8C9459DCE0BBEF8122FDC0498B370@exchsrv.AUXITROL1> References: <55A12CBC06A8C9459DCE0BBEF8122FDC0498B36C@exchsrv.AUXITROL1> <4DEF6750.2080606@univ-lemans.fr> <55A12CBC06A8C9459DCE0BBEF8122FDC0498B370@exchsrv.AUXITROL1> Message-ID: <4DEF6CBF.9050107@univ-lemans.fr> ----- Message d'origine ----- De : Carrico, Paul Date : 08/06/2011 14:23: > Dear Samuel, > - The type of facets are either triangles or quads (or both for a mesh using > mixed elements), > - the type of interpolation can be either linear or quadratic where some nodes > traduces the curvature .... (for mechanical FEA) > - coordinate system => cartesian one > - kind of shape : has a torus to be treated different than a simple sphere ? > I have some information's on closed surfaces using triangles ... of course a > solution is to "split" all the elements into 3 nodes triangles ... but is it > the simpliest way ? the most robust one ? Since you want to work on volumes, you need tetrahedrons instead of triangles, or hexahedrons instead of quads. AFAIK, there is no universal strategy. It depends of the topology of the volume (concave/convex, simply or doubly connexe..). It is not a simple problem. SG -------------- next part -------------- An HTML attachment was scrubbed... URL: From paul.carrico at esterline.com Wed Jun 8 14:46:47 2011 From: paul.carrico at esterline.com (Carrico, Paul) Date: Wed, 8 Jun 2011 14:46:47 +0200 Subject: [scilab-Users] Volume calculation from closed meshed surface In-Reply-To: <4DEF6CBF.9050107@univ-lemans.fr> References: <55A12CBC06A8C9459DCE0BBEF8122FDC0498B36C@exchsrv.AUXITROL1> <4DEF6750.2080606@univ-lemans.fr> <55A12CBC06A8C9459DCE0BBEF8122FDC0498B370@exchsrv.AUXITROL1> <4DEF6CBF.9050107@univ-lemans.fr> Message-ID: <55A12CBC06A8C9459DCE0BBEF8122FDC0498B371@exchsrv.AUXITROL1> not easy to explain ... imagine that whatever is the shape (let me choosing a shere in the current email), only the outer surface is meshed ... directly I don't want to perform a fea on that part => I just want to know the inner volume (in reality to estimate the inner pressure following the shape changes) ! Have a look in the attached document pages 20 and 25 for some examples !!!! Paul ________________________________ De : Samuel GOUGEON [mailto:Samuel.Gougeon at univ-lemans.fr] Envoy? : mercredi 8 juin 2011 14:36 ? : users at lists.scilab.org Objet : Re: [scilab-Users] Volume calculation from closed meshed surface ----- Message d'origine ----- De : Carrico, Paul Date : 08/06/2011 14:23: Dear Samuel, - The type of facets are either triangles or quads (or both for a mesh using mixed elements), - the type of interpolation can be either linear or quadratic where some nodes traduces the curvature .... (for mechanical FEA) - coordinate system => cartesian one - kind of shape : has a torus to be treated different than a simple sphere ? I have some information's on closed surfaces using triangles ... of course a solution is to "split" all the elements into 3 nodes triangles ... but is it the simpliest way ? the most robust one ? Since you want to work on volumes, you need tetrahedrons instead of triangles, or hexahedrons instead of quads. AFAIK, there is no universal strategy. It depends of the topology of the volume (concave/convex, simply or doubly connexe..). It is not a simple problem. SG -------------------------------------------------------------------------------- Le pr?sent mail et ses pi?ces jointes sont confidentiels et destin?s ? la personne ou aux personnes vis?e(s) ci-dessus. Si vous avez re?u cet e-mail par erreur, veuillez contacter imm?diatement l'exp?diteur et effacer le message de votre syst?me. Toute divulgation, copie ou distribution de cet e-mail est strictement interdite. This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please contact the sender and delete the email from your system. If you are not the named addressee you should not disseminate, distribute or copy this email. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: TER 2A report.pdf Type: application/octet-stream Size: 1759562 bytes Desc: TER 2A report.pdf URL: From ludo.wag at laposte.net Thu Jun 9 09:42:05 2011 From: ludo.wag at laposte.net (Orbeman) Date: Thu, 9 Jun 2011 00:42:05 -0700 (PDT) Subject: Function resize_matrix with hypermatrix Message-ID: <1307605325157-3042842.post@n3.nabble.com> Hello, Does the function resize_matrix with hypermatrix ? It si a similar function for hypermatrix ? I envisage to resize my hypermatrix with this function with redefined 2D sub matrix and concatenated this 2D matrix to create the new hypermatrix. Thank you. -- View this message in context: http://mailinglists.scilab.org/Function-resize-matrix-with-hypermatrix-tp3042842p3042842.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From denis.crete at thalesgroup.com Thu Jun 9 10:06:09 2011 From: denis.crete at thalesgroup.com (=?UTF-8?Q?Denis_Cr=C3=A9t=C3=A9?=) Date: Thu, 9 Jun 2011 01:06:09 -0700 (PDT) Subject: Function resize_matrix with hypermatrix In-Reply-To: <1307605325157-3042842.post@n3.nabble.com> References: <1307605325157-3042842.post@n3.nabble.com> Message-ID: <1307606769556-3042928.post@n3.nabble.com> Hello, resize_matrix apparently redefines the size of a matrix (and not hypermatrix) as only row and column numbers are specified. This function changes the total number of elements of the array. If I understand approximately what is your goal, you may consider using "permute" and/or "hypermat". These functions do not change the total number of elements of the array. HTH Denis -- View this message in context: http://mailinglists.scilab.org/Function-resize-matrix-with-hypermatrix-tp3042842p3042928.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From michael.baudin at scilab.org Thu Jun 9 10:09:26 2011 From: michael.baudin at scilab.org (=?ISO-8859-1?Q?Micha=EBl_Baudin?=) Date: Thu, 09 Jun 2011 10:09:26 +0200 Subject: [scilab-Users] RE: Concatenation with hypermatrix In-Reply-To: References: Message-ID: <4DF07FB6.7030102@scilab.org> Hi, Do you have a simple script to reproduce your performance issue ? You might be interested by "Programming in Scilab", especially the section "3.3 Hypermatrices" and the section "3.12 Comparison of data types" : http://forge.scilab.org/index.php/p/docprogscilab/downloads/ In the Figure 19, I analyzed the current implementation of hypermatrices in Scilab v5. Here is one explanation for the potential lack of performances, associated with the current implementation. Hypermatrices are partially implemented with mlists, supported by both compiled source code and Scilab macros. In v5, the hypermatrix is internally stored as a n-by-1 matrix of doubles, where n is the product of the dimensions. The values are stored column-by-column. So, if you extract one sub-column of this matrix, such as with A(i:j,p,q), this should be fast because data is stored locally, i.e. the next values in the extracted matrix is the neighbor of the previous values . If, on the other hand, you extract the 2nd or the 3d dimension (or more), for example, then I guess that this will be slower, because the hypermatrix has to gather values which are scattered in the internal n-by-1 matrix: there are many values in the internal matrix between two values in the extracted matrix. For those interested, here is the detail in Scilab v5. For a hypermatrix of doubles (or ints), the extraction operator is implemented in the compiled C source code: data_structures/src/c/hmops.c: intehm. This code is used in the statements : M = ones(3,3,3); B = M(1,2:3,2); For other types of values (e.g. strings), the extraction is implemented in overloading/macros/%hm_e.sci. This code is used in the statements: M = hypermat([2,2,2],["a","a","a","a","a","a","a","a"]); B = M(1,1:2,2); This also may lead to performance differences, in the sense that an hypermatrix of doubles is probably much faster than an hypermatrix of strings. In Scilab v6, the implementation is based on compiled source code for all types of contents. Anyway, data locality will limit the performances in v6 the same way as it limits the performances in v5: when we extract values, scattered values have to be gathered the same way as before. A regular matrix of doubles (i.e. with 2 indices) will in general be much faster than an hypermatrix of doubles. All in all, Scilab was first designed for that... Best regards, Micha?l Baudin Le 01/06/2011 16:17, Mike Page a ?crit : > Hi, > > I think you have encountered a general problem with hypermatrices. They are > quite fast to operate on when you work across some dimensions, but across > other dimensions they can be *VERY* slow. I don't know why this is - maybe > somebody who wrote the hypermatrix code could look at it. > > For instance, some time ago I had a need to extract a "slice" (that is a > matrix) from a hypermatrix. This took a very long time, but when I > "transposed" the hypermatrix using the permute function, then it was much > faster. I think if you arrange your dimensions so that the data to be > joined fits on the end of the existing storage then it will be faster. > > Regards, > Mike. > > > -----Original Message----- > From: Orbeman [mailto:ludo.wag at laposte.net] > Sent: 01 June 2011 14:29 > To: users at lists.scilab.org > Subject: [scilab-Users] RE: Concatenation with hypermatrix > > > I've finally found the command C=cat(3,C,x). It works but very slowly. For > exemple it needs more than 2 min to create a 890 * 2 * 5 3D hypermatrix, but > barely 1 sec to create the same data with 890 * (2+2+2+2+2) 2D matrix. > > In fact, I've analysed n experiences which data (2 rows and variable line) > are written in one file per experience. All of the files are not the same > length, so I add number 'tag' to egal the maximun number of line, here 890. > > After that I've created some others (hyper) matrix with different size of > row : 890 * 1 * 5, 890 * 3 * 5,... > > I can imagine the increase of time for comptute. > > -- > View this message in context: > http://mailinglists.scilab.org/Concatenation-with-hypermatrix-tp3010503p3010 > 714.html > Sent from the Scilab users - Mailing Lists Archives mailing list archive at > Nabble.com. > > No virus found in this incoming message. > Checked by AVG - www.avg.com > Version: 9.0.901 / Virus Database: 271.1.1/3670 - Release Date: 05/31/11 > 19:34:00 > -- 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 From denis.crete at thalesgroup.com Thu Jun 9 10:55:54 2011 From: denis.crete at thalesgroup.com (=?UTF-8?Q?Denis_Cr=C3=A9t=C3=A9?=) Date: Thu, 9 Jun 2011 01:55:54 -0700 (PDT) Subject: Function fit_data with several curves dependent on parameters In-Reply-To: <1307456966593-3034675.post@n3.nabble.com> References: <1307449811364-3034239.post@n3.nabble.com> <4DEE1C98.3070502@shom.fr> <1307452559588-3034391.post@n3.nabble.com> <55A12CBC06A8C9459DCE0BBEF8122FDC0498B367@exchsrv.AUXITROL1> <1307454054282-3034496.post@n3.nabble.com> <55A12CBC06A8C9459DCE0BBEF8122FDC0498B369@exchsrv.AUXITROL1> <1307456966593-3034675.post@n3.nabble.com> Message-ID: <1307609754088-3043054.post@n3.nabble.com> Hello, it looks like the function "datafit" can solve the problem for you: Here V = ln(v/0.0001) is a column vector // Demo for fitting y=F(x,V) by an analytically defined surface // W is a 3-column matrix: [x, V, y] (one row corresponds to one experimental data) deff('y=F(x,V)', 'y=(a+b*x.^n).*(1+c*V)'); deff('e=G(abcn,z)','a=abcn(1),b=abcn(2), c=abcn(3), n=abcn(4), x=z(1),V=z(2),y=z(3), e=y-F(x,V)') // Initial guess for fitting parameters abcn=[5.43;-5.51;0.4;1]; // Experimental data W=[0,0,1;0,1,3;1,0,4;1,1,5.8]; // Fitting W [abcn,err]=datafit(G,W',abcn); a=abcn(1),b=abcn(2),c=abcn(3), n=abcn(4) I did not run this code, but it is derived from a tested example I have made some time ago. The biggest trap is in the definition of F: you may have to replace constant "1" by "ones(1,size(V,'c'))" (?). n will be accurate only if you have a large range for the set of x ; similarily, for the unknow parameter m in (1-((T-Tt)/(Tm-Tt))^m) and the range of variation of T-Tt. HTH Denis -- View this message in context: http://mailinglists.scilab.org/Function-fit-data-with-several-curves-dependent-on-parameters-tp3034239p3043054.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From Mike at Page-One.Waitrose.com Thu Jun 9 11:07:29 2011 From: Mike at Page-One.Waitrose.com (Mike Page) Date: Thu, 9 Jun 2011 10:07:29 +0100 Subject: [scilab-Users] Function resize_matrix with hypermatrix In-Reply-To: <1307605325157-3042842.post@n3.nabble.com> Message-ID: Hi, The hypermatrix is stored as a linear array of data and a vector of dimensions. You may be able to do what you want by altering the dimensions. For example: -->a=hypermat([2,3,4],[1:24]) a = (:,:,1) 1. 3. 5. 2. 4. 6. (:,:,2) 7. 9. 11. 8. 10. 12. (:,:,3) 13. 15. 17. 14. 16. 18. (:,:,4) 19. 21. 23. 20. 22. 24. -->a.dims=[2 4 2] a = (:,:,1) 1. 3. 5. 7. 2. 4. 6. 8. (:,:,2) 9. 11. 13. 15. 10. 12. 14. 16. As you see, this just changes the dimensions, but leaves the data the same. This method cannot be used to extend the size of the data though. Hope that's helpful, Mike. -----Original Message----- From: Orbeman [mailto:ludo.wag at laposte.net] Sent: 09 June 2011 08:42 To: users at lists.scilab.org Subject: [scilab-Users] Function resize_matrix with hypermatrix Hello, Does the function resize_matrix with hypermatrix ? It si a similar function for hypermatrix ? I envisage to resize my hypermatrix with this function with redefined 2D sub matrix and concatenated this 2D matrix to create the new hypermatrix. Thank you. -- View this message in context: http://mailinglists.scilab.org/Function-resize-matrix-with-hypermatrix-tp304 2842p3042842.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. No virus found in this incoming message. Checked by AVG - www.avg.com Version: 9.0.901 / Virus Database: 271.1.1/3688 - Release Date: 06/08/11 07:34:00 From berns.buenaobra at gmail.com Fri Jun 10 04:16:27 2011 From: berns.buenaobra at gmail.com (Berns Buenaobra) Date: Fri, 10 Jun 2011 10:16:27 +0800 Subject: [scilab-Users] RE: Concatenation with hypermatrix In-Reply-To: <4DF07FB6.7030102@scilab.org> References: <4DF07FB6.7030102@scilab.org> Message-ID: Hello all: This is the best! Many thanks Micha?l Baudin! Regards, Berns B. On Thu, Jun 9, 2011 at 4:09 PM, Micha?l Baudin wrote: > Hi, > > Do you have a simple script to reproduce your performance issue ? > > You might be interested by "Programming in Scilab", especially the section > "3.3 Hypermatrices" and the section "3.12 Comparison of data types" : > > http://forge.scilab.org/index.php/p/docprogscilab/downloads/ > > In the Figure 19, I analyzed the current implementation of hypermatrices in > Scilab v5. Here is one explanation for the potential lack of performances, > associated with the current implementation. Hypermatrices are partially > implemented with mlists, supported by both compiled source code and Scilab > macros. In v5, the hypermatrix is internally stored as a n-by-1 matrix of > doubles, where n is the product of the dimensions. The values are stored > column-by-column. > > So, if you extract one sub-column of this matrix, such as with A(i:j,p,q), > this should be fast because data is stored locally, i.e. the next values in > the extracted matrix is the neighbor of the previous values . If, on the > other hand, you extract the 2nd or the 3d dimension (or more), for example, > then I guess that this will be slower, because the hypermatrix has to gather > values which are scattered in the internal n-by-1 matrix: there are many > values in the internal matrix between two values in the extracted matrix. > > For those interested, here is the detail in Scilab v5. For a hypermatrix of > doubles (or ints), the extraction operator is implemented in the compiled C > source code: data_structures/src/c/hmops.c: intehm. This code is used in the > statements : > > M = ones(3,3,3); > B = M(1,2:3,2); > > For other types of values (e.g. strings), the extraction is implemented in > overloading/macros/%hm_e.sci. This code is used in the statements: > > M = hypermat([2,2,2],["a","a","a","a","a","a","a","a"]); > B = M(1,1:2,2); > > This also may lead to performance differences, in the sense that an > hypermatrix of doubles is probably much faster than an hypermatrix of > strings. > > In Scilab v6, the implementation is based on compiled source code for all > types of contents. Anyway, data locality will limit the performances in v6 > the same way as it limits the performances in v5: when we extract values, > scattered values have to be gathered the same way as before. > > A regular matrix of doubles (i.e. with 2 indices) will in general be much > faster than an hypermatrix of doubles. All in all, Scilab was first designed > for that... > > Best regards, > > Micha?l Baudin > > > > > Le 01/06/2011 16:17, Mike Page a ?crit : > >> Hi, >> >> >> I think you have encountered a general problem with hypermatrices. They >> are >> quite fast to operate on when you work across some dimensions, but across >> other dimensions they can be *VERY* slow. I don't know why this is - >> maybe >> somebody who wrote the hypermatrix code could look at it. >> >> For instance, some time ago I had a need to extract a "slice" (that is a >> matrix) from a hypermatrix. This took a very long time, but when I >> "transposed" the hypermatrix using the permute function, then it was much >> faster. I think if you arrange your dimensions so that the data to be >> joined fits on the end of the existing storage then it will be faster. >> >> Regards, >> Mike. >> >> >> -----Original Message----- >> From: Orbeman [mailto:ludo.wag at laposte.net] >> Sent: 01 June 2011 14:29 >> To: users at lists.scilab.org >> Subject: [scilab-Users] RE: Concatenation with hypermatrix >> >> >> I've finally found the command C=cat(3,C,x). It works but very slowly. For >> exemple it needs more than 2 min to create a 890 * 2 * 5 3D hypermatrix, >> but >> barely 1 sec to create the same data with 890 * (2+2+2+2+2) 2D matrix. >> >> In fact, I've analysed n experiences which data (2 rows and variable line) >> are written in one file per experience. All of the files are not the same >> length, so I add number 'tag' to egal the maximun number of line, here >> 890. >> >> After that I've created some others (hyper) matrix with different size of >> row : 890 * 1 * 5, 890 * 3 * 5,... >> >> I can imagine the increase of time for comptute. >> >> -- >> View this message in context: >> >> http://mailinglists.scilab.org/Concatenation-with-hypermatrix-tp3010503p3010 >> 714.html >> Sent from the Scilab users - Mailing Lists Archives mailing list archive >> at >> Nabble.com. >> >> No virus found in this incoming message. >> Checked by AVG - www.avg.com >> Version: 9.0.901 / Virus Database: 271.1.1/3670 - Release Date: 05/31/11 >> 19:34:00 >> >> > > -- > 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 nexus111 at web.de Fri Jun 10 11:37:32 2011 From: nexus111 at web.de (jens2011) Date: Fri, 10 Jun 2011 02:37:32 -0700 (PDT) Subject: Scicos Electrical Toolbox and Linear toolbox In-Reply-To: <4797420F.5080505@ektronic.de> References: <479735FE.7050808@bios.srv.br> <1201092561.479737d17b246@imp.free.fr> <47973CE7.7080304@bios.srv.br> <4797420F.5080505@ektronic.de> Message-ID: <1307698652363-3047934.post@n3.nabble.com> Hello, i also do not exactly understand the difference between implicit and explicit portconnection. Googling was not sucessful,too. Did you receive a result for your problem or did you find out the difference by yourself ? Mit freundlichen Gr??en Jens Reimer -- View this message in context: http://mailinglists.scilab.org/Beginner-help-with-matrix-extraction-tp2615018p3047934.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.cheze at cea.fr Fri Jun 10 12:31:53 2011 From: david.cheze at cea.fr (davidcheze) Date: Fri, 10 Jun 2011 03:31:53 -0700 (PDT) Subject: is editvar very slow ? Message-ID: Hi, I would like to know why editvar so slow is to edit quite large matrix (5500 x 35) of double ? Same operation in Excel requires only a couple of seconds while editvar is still working after 2-3 minutes. -->M=csv_read('mesures_20101104.txt',ascii(9),'.') M = column 1 to 13 Nan Nan Nan Nan Nan Nan Nan Nan Nan Nan Nan Nan Nan 40486.472 1.16 53.845875 59.783516 0.82 57.828438 50.027088 0.62 52.962467 48.013382 0. 18.751423 18.507408 -->size(M) ans = 5500. 35. -->editvar M Thanks for any piece of explanation David -- View this message in context: http://mailinglists.scilab.org/is-editvar-very-slow-tp3048080p3048080.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From paul.carrico at esterline.com Fri Jun 10 12:36:33 2011 From: paul.carrico at esterline.com (Carrico, Paul) Date: Fri, 10 Jun 2011 12:36:33 +0200 Subject: advice in reading huge text file including words and numbers Message-ID: <55A12CBC06A8C9459DCE0BBEF8122FDC0498B376@exchsrv.AUXITROL1> Dear all, May I have some advices in the way to read a (huge) text file including words and numbers ? ... Let me saying that both words and numbers are important and they have to be recorded ! By using the following way it works, but for huge text file including hundred thousands of line it's too long .... - reading each line up to the end - on each line determining the space character localization to determine the columns - converting the text in number using eval(part ....)) - recording ... - and so on Furthermore as often I'm sure internal Scilab function exists providing better (and faster) results .... I tried fscanfMAT function (failed) as well as the read_csv one ... the previous function works but how can I distinguish characters from numbers ? another function than eval ? A basic example is provided to well understand the request Thanks for any advice Paul -------------------------------------------------------------------------------- Le pr?sent mail et ses pi?ces jointes sont confidentiels et destin?s ? la personne ou aux personnes vis?e(s) ci-dessus. Si vous avez re?u cet e-mail par erreur, veuillez contacter imm?diatement l'exp?diteur et effacer le message de votre syst?me. Toute divulgation, copie ou distribution de cet e-mail est strictement interdite. This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please contact the sender and delete the email from your system. If you are not the named addressee you should not disseminate, distribute or copy this email. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: cube.msh Type: application/octet-stream Size: 404 bytes Desc: cube.msh URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: read_csv.sce Type: application/octet-stream Size: 209 bytes Desc: read_csv.sce URL: From david.cheze at cea.fr Fri Jun 10 12:42:39 2011 From: david.cheze at cea.fr (CHEZE David 227480) Date: Fri, 10 Jun 2011 12:42:39 +0200 Subject: [scilab-Users] advice in reading huge text file including words and numbers Message-ID: Hi, You should use the improved function csv_read() (from ATOMS "CSV read write" toolbox) instead of native read_csv() : it's far faster and configuration is easy. Hope it can help, David De : Carrico, Paul [mailto:paul.carrico at esterline.com] Envoy? : vendredi 10 juin 2011 12:37 ? : users at lists.scilab.org Objet : [scilab-Users] advice in reading huge text file including words and numbers Dear all, May I have some advices in the way to read a (huge) text file including words and numbers ? ... Let me saying that both words and numbers are important and they have to be recorded ! By using the following way it works, but for huge text file including hundred thousands of line it's too long .... - reading each line up to the end - on each line determining the space character localization to determine the columns - converting the text in number using eval(part ....)) - recording ... - and so on Furthermore as often I'm sure internal Scilab function exists providing better (and faster) results .... I tried fscanfMAT function (failed) as well as the read_csv one ... the previous function works but how can I distinguish characters from numbers ? another function than eval ? A basic example is provided to well understand the request Thanks for any advice Paul -------------------------------------------------------------------------------- Le pr?sent mail et ses pi?ces jointes sont confidentiels et destin?s ? la personne ou aux personnes vis?e(s) ci-dessus. Si vous avez re?u cet e-mail par erreur, veuillez contacter imm?diatement l'exp?diteur et effacer le message de votre syst?me. Toute divulgation, copie ou distribution de cet e-mail est strictement interdite. This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please contact the sender and delete the email from your system. If you are not the named addressee you should not disseminate, distribute or copy this email. -------------- next part -------------- An HTML attachment was scrubbed... URL: From paul.carrico at esterline.com Fri Jun 10 12:43:01 2011 From: paul.carrico at esterline.com (Carrico, Paul) Date: Fri, 10 Jun 2011 12:43:01 +0200 Subject: advice in reading huge text file including words and numbers (ERRATUM) Message-ID: <55A12CBC06A8C9459DCE0BBEF8122FDC0498B377@exchsrv.AUXITROL1> Dear all, May I have some advices in the way to read a (huge) text file including words and numbers ? ... Let me saying that both words and numbers are important and they have to be recorded ! By using the following way it works, but for huge text file including hundred thousands of line it's too long .... - reading each line up to the end - on each line determining the space character localization to determine the columns - converting the text in number using eval(part ....)) - recording ... - and so on Furthermore as often I'm sure internal Scilab function exists providing better (and faster) results .... I tried fscanfMAT function (failed) as well as the read_csv one ... the previous function works but how can I distinguish characters from numbers ? another function than eval ? A basic example is provided to well understand the request Thanks for any advice Paul PS : on the latest email outlook erased the .msh file !!!! rename cube.txt in cube.msh ... or change the name in the scilab file -------------------------------------------------------------------------------- Le pr?sent mail et ses pi?ces jointes sont confidentiels et destin?s ? la personne ou aux personnes vis?e(s) ci-dessus. Si vous avez re?u cet e-mail par erreur, veuillez contacter imm?diatement l'exp?diteur et effacer le message de votre syst?me. Toute divulgation, copie ou distribution de cet e-mail est strictement interdite. This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please contact the sender and delete the email from your system. If you are not the named addressee you should not disseminate, distribute or copy this email. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: cube.zip Type: application/x-zip-compressed Size: 545 bytes Desc: cube.zip URL: From paul.carrico at esterline.com Fri Jun 10 12:46:37 2011 From: paul.carrico at esterline.com (Carrico, Paul) Date: Fri, 10 Jun 2011 12:46:37 +0200 Subject: [scilab-Users] advice in reading huge text file including words and numbers In-Reply-To: References: Message-ID: <55A12CBC06A8C9459DCE0BBEF8122FDC0498B379@exchsrv.AUXITROL1> I'll test it "at home" .... indeed I can not install any toolbox in my professional work station (proxy problem) ... Thanks Paul ________________________________ De : CHEZE David 227480 [mailto:david.cheze at cea.fr] Envoy? : vendredi 10 juin 2011 12:43 ? : users at lists.scilab.org Objet : RE: [scilab-Users] advice in reading huge text file including words and numbers Hi, You should use the improved function csv_read() (from ATOMS "CSV read write" toolbox) instead of native read_csv() : it's far faster and configuration is easy. Hope it can help, David De : Carrico, Paul [mailto:paul.carrico at esterline.com] Envoy? : vendredi 10 juin 2011 12:37 ? : users at lists.scilab.org Objet : [scilab-Users] advice in reading huge text file including words and numbers Dear all, May I have some advices in the way to read a (huge) text file including words and numbers ? ... Let me saying that both words and numbers are important and they have to be recorded ! By using the following way it works, but for huge text file including hundred thousands of line it's too long .... - reading each line up to the end - on each line determining the space character localization to determine the columns - converting the text in number using eval(part ....)) - recording ... - and so on Furthermore as often I'm sure internal Scilab function exists providing better (and faster) results .... I tried fscanfMAT function (failed) as well as the read_csv one ... the previous function works but how can I distinguish characters from numbers ? another function than eval ? A basic example is provided to well understand the request Thanks for any advice Paul -------------------------------------------------------------------------------- Le pr?sent mail et ses pi?ces jointes sont confidentiels et destin?s ? la personne ou aux personnes vis?e(s) ci-dessus. Si vous avez re?u cet e-mail par erreur, veuillez contacter imm?diatement l'exp?diteur et effacer le message de votre syst?me. Toute divulgation, copie ou distribution de cet e-mail est strictement interdite. This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please contact the sender and delete the email from your system. If you are not the named addressee you should not disseminate, distribute or copy this email. -------------------------------------------------------------------------------- Le pr?sent mail et ses pi?ces jointes sont confidentiels et destin?s ? la personne ou aux personnes vis?e(s) ci-dessus. Si vous avez re?u cet e-mail par erreur, veuillez contacter imm?diatement l'exp?diteur et effacer le message de votre syst?me. Toute divulgation, copie ou distribution de cet e-mail est strictement interdite. This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please contact the sender and delete the email from your system. If you are not the named addressee you should not disseminate, distribute or copy this email. -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.cheze at cea.fr Fri Jun 10 13:59:35 2011 From: david.cheze at cea.fr (davidcheze) Date: Fri, 10 Jun 2011 04:59:35 -0700 (PDT) Subject: scinotes regular expression search Message-ID: Hi, Is there a documentation's resource about regular expression supported by scinotes ? or what is the closest kind of rules from another standard ? Thanks, David -- View this message in context: http://mailinglists.scilab.org/scinotes-regular-expression-search-tp3048285p3048285.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.cheze at cea.fr Fri Jun 10 14:09:28 2011 From: david.cheze at cea.fr (CHEZE David 227480) Date: Fri, 10 Jun 2011 14:09:28 +0200 Subject: [scilab-Users] scinotes regular expression search In-Reply-To: References: Message-ID: It seems to be Perl regular expression compatible. De : CHEZE David 227480 Envoy? : vendredi 10 juin 2011 14:00 ? : users at lists.scilab.org Objet : [scilab-Users] scinotes regular expression search Hi, Is there a documentation's resource about regular expression supported by scinotes ? or what is the closest kind of rules from another standard ? Thanks, David ________________________________ View this message in context: scinotes regular expression search Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From vogt at centre-cired.fr Fri Jun 10 16:13:43 2011 From: vogt at centre-cired.fr (Adrien Vogt-Schilb) Date: Fri, 10 Jun 2011 16:13:43 +0200 Subject: exporting a string matrix in scilab 4 In-Reply-To: References: Message-ID: <4DF22697.30805@centre-cired.fr> Hi everybody I would like to export a string matrix, say A A = string(rand(4,7)) I usually use write_csv for this, but in this occasion i have to use a basic scilab 4 package. I tried write("foo.txt",A), but this produces a column, and i just don't understand fortan like string format. Anyone can help? thx -- *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 dan.simkins at workflow-science.com Fri Jun 10 18:33:34 2011 From: dan.simkins at workflow-science.com (dsimkins) Date: Fri, 10 Jun 2011 09:33:34 -0700 (PDT) Subject: addinter link: error 236 Message-ID: <1307723614025-3049612.post@n3.nabble.com> Dear All, I have a similar problem to a prior post; when I try to load my custom DLL, I get the following error: -->addinter("C:\readdb\lib_readdb.dll", 'lib_readdb', 'readdb' ); link: The file C:\readdb\lib_readdb.dll does not exist. link: The file C:\readdb\lib_readdb.dll does not exist. !--error 236 addinter: The shared archive was not loaded: Unknown Error My environment: Windows 7 Professional 64 bit Scilab 5.3.2 x64 MS Visual C++ 2010 Professional I have run dir in the Scilab console, and the DLL is present. I have checked my DLL using depends all looks fine. I have had this DLL running previously in Scilab 4.1 on Windows XP x86 and have just re-built it to support x64. I would really appreciate any pointers on how best to locate the source of the problem. Kind regards Dan -- View this message in context: http://mailinglists.scilab.org/addinter-link-error-236-tp3049612p3049612.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From Samuel.Gougeon at univ-lemans.fr Fri Jun 10 18:32:52 2011 From: Samuel.Gougeon at univ-lemans.fr (Samuel GOUGEON) Date: Fri, 10 Jun 2011 18:32:52 +0200 Subject: [scilab-Users] exporting a string matrix in scilab 4 In-Reply-To: <4DF22697.30805@centre-cired.fr> References: <4DF22697.30805@centre-cired.fr> Message-ID: <4DF24734.8000506@univ-lemans.fr> Hello Adrien, You may let write() converting numerical entries in strings: A = rand(4,7) write("foo.txt",A,"(10(f10.5,2x))") Each line of A is processed. 10 is the maximum number of iterations of the next pattern in following parentheses (here 7 would be enough) f10.3 mean float output over 10 chars including 3 figures after decimal dot 2x means 2 spaces HTH Samuel ----- Message d'origine ----- De : Adrien Vogt-Schilb Date : 10/06/2011 16:13: > Hi everybody > > I would like to export a string matrix, say A > A = string(rand(4,7)) > > I usually use write_csv for this, but in this occasion i have to use a basic > scilab 4 package. > > I tried write("foo.txt",A), but this produces a column, and i just don't > understand fortan like string format. > > Anyone can help? > thx > > -- > > *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: not available Type: image/png Size: 4092 bytes Desc: not available URL: From Mike at Page-One.Waitrose.com Fri Jun 10 18:44:33 2011 From: Mike at Page-One.Waitrose.com (Mike Page) Date: Fri, 10 Jun 2011 17:44:33 +0100 Subject: [scilab-Users] addinter link: error 236 In-Reply-To: <1307723614025-3049612.post@n3.nabble.com> Message-ID: Hi Dan, I think I was the prior poster. My problem was that my C code included the FFTW library (as part of another vector-matrix library). As I wasn't using the FFT functions, I got round the problem by deleting the FFTW references and rebuilding my DLL. It seems that the Scilab FFTW DLL and mine were built differently so they ended up both getting loaded, which cause some duplicated entry points. Don't know if that will help you - hope it gives a clue... Mike. -----Original Message----- From: dsimkins [mailto:dan.simkins at workflow-science.com] Sent: 10 June 2011 17:34 To: users at lists.scilab.org Subject: [scilab-Users] addinter link: error 236 Dear All, I have a similar problem to a prior post; when I try to load my custom DLL, I get the following error: -->addinter("C:\readdb\lib_readdb.dll", 'lib_readdb', 'readdb' ); link: The file C:\readdb\lib_readdb.dll does not exist. link: The file C:\readdb\lib_readdb.dll does not exist. !--error 236 addinter: The shared archive was not loaded: Unknown Error My environment: Windows 7 Professional 64 bit Scilab 5.3.2 x64 MS Visual C++ 2010 Professional I have run dir in the Scilab console, and the DLL is present. I have checked my DLL using depends all looks fine. I have had this DLL running previously in Scilab 4.1 on Windows XP x86 and have just re-built it to support x64. I would really appreciate any pointers on how best to locate the source of the problem. Kind regards Dan -- View this message in context: http://mailinglists.scilab.org/addinter-link-error-236-tp3049612p3049612.htm l Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. No virus found in this incoming message. Checked by AVG - www.avg.com Version: 9.0.901 / Virus Database: 271.1.1/3691 - Release Date: 06/09/11 19:34:00 From paul.carrico at free.fr Sat Jun 11 10:10:41 2011 From: paul.carrico at free.fr (paul.carrico at free.fr) Date: Sat, 11 Jun 2011 10:10:41 +0200 (CEST) Subject: CUTEr errot loading Message-ID: <309436931.5279121307779841132.JavaMail.root@zimbra26-e5.priv.proxad.net> Dear all, For information : I installed CUTEr and after relaunching Scilab (under opensuse64bits OS) I've the message herebellow. Regards Paul Initialisation : Chargement de l'environnement de travail Start CUTEr Load macros Load gateways atomsLoad: An error occurred while loading 'CUTEr-1.1-1': link : La biblioth?que partag?e n'a pas ?t? charg?e: /home/paul/scilab-5.3.2/share/scilab/contrib/CUTEr/1.1-1/sci_gateway/tools_gateway//../../src/tools/libsiftools.so: undefined symbol: AddFunctionInTable Start Fmincon Load macros Load help Load demos Start CSV read write Load macros Load gateways Load help Load demos Type "demo_gui()" and search for "CSV read write" for Demonstrations. Start SciIPOpt Load macros Load gateways Load help Load demos From ludo.wag at laposte.net Sun Jun 12 08:18:10 2011 From: ludo.wag at laposte.net (Orbeman) Date: Sat, 11 Jun 2011 23:18:10 -0700 (PDT) Subject: Add LaTeX expression Message-ID: <1307859490280-3054886.post@n3.nabble.com> Hello, It is possible to add a LaTeX expression in graph like y=x^n where n is a scalar computed by program ? Thank you ! -- View this message in context: http://mailinglists.scilab.org/Add-LaTeX-expression-tp3054886p3054886.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From sumit.adhikari at gmail.com Sun Jun 12 12:09:02 2011 From: sumit.adhikari at gmail.com (Sumit Adhikari) Date: Sun, 12 Jun 2011 12:09:02 +0200 Subject: [scilab-Users] Add LaTeX expression In-Reply-To: <1307859490280-3054886.post@n3.nabble.com> References: <1307859490280-3054886.post@n3.nabble.com> Message-ID: Although I never used but I think so. From 5.2 version onward it should do so. Refer the page : http://help.scilab.org/docs/5.3.2/en_US/math_rendering_features_in_graphic.html Regards, -- Sumit Adhikari, Institute of Computer Technology, Faculty of Electrical Engineering, Vienna University of Technology, Gu?hausstra?e 27-29,1040 Vienna On Sun, Jun 12, 2011 at 8:18 AM, Orbeman wrote: > Hello, > > It is possible to add a LaTeX expression in graph like y=x^n where n is a > scalar computed by program ? > > Thank you ! > > -- > View this message in context: > http://mailinglists.scilab.org/Add-LaTeX-expression-tp3054886p3054886.html > Sent from the Scilab users - Mailing Lists Archives mailing list archive at > Nabble.com. > -------------- next part -------------- An HTML attachment was scrubbed... URL: From xwang1976 at email.it Sun Jun 12 13:28:19 2011 From: xwang1976 at email.it (xwang1976 at email.it) Date: Sun, 12 Jun 2011 13:28:19 +0200 Subject: Call scilab function from xcos Message-ID: <4DF4A2D3.8020408@email.it> Hi to all, I would like to know how to call a scilab function (defined in a .sci file) inside an xcos model. I've seen the generic_block3, but I haven't understood well how it work. Is it the correct block to use? Is there any useful tutorial? Thank you, Xwang From rouxph.22 at gmail.com Sun Jun 12 13:11:16 2011 From: rouxph.22 at gmail.com (philippe roux) Date: Sun, 12 Jun 2011 13:11:16 +0200 Subject: Add LaTeX expression In-Reply-To: <1307859490280-3054886.post@n3.nabble.com> References: <1307859490280-3054886.post@n3.nabble.com> Message-ID: Le 12/06/2011 08:18, Orbeman a ?crit : > > It is possible to add a LaTeX expression in graph like y=x^n where n is a > scalar computed by program ? yes, use "string" to convert a scalar variable to a string, see example below : n=2; x=[-2:0.02:2]';y=x.^n;plot2d(x,y,5); xtitle('$ y=x^{'+string(n)+'}$'), xstring(-0.5,1,'$x^{'+string(n)+'}=0$') remark that the string send to "xtitle" or "xstring" must beging by "$" and end with "$" (or "$$") otherwise latex code is not interpreted ... Philippe. From rouxph.22 at gmail.com Sun Jun 12 15:47:53 2011 From: rouxph.22 at gmail.com (rouxph) Date: Sun, 12 Jun 2011 15:47:53 +0200 Subject: test if a scilab macro exists or not Message-ID: Hi, i need to test existence of "deprecated/obsolete" functions in scilab. i've believed that it was possible with "exists" or "isdef" but i realize that there is somethings i don't understand in this! For example consider that i would like to test existence of "sort" (deprecated and should be replaced by "gsort") : -->exists('sort') ans = 0. -->exists('gsort') ans = 0. -->isdef('sort') ans = F -->isdef('sort','all') ans = F although "gsort" exists and "sort" doesn't exists : -->sort([1,2]) !--error 4 Variable non d?finie: sort -->gsort([1,2]) ans = 2. 1. another example with "maxi" (obsolete and should be replaced by "max") -->exists('max') ans = 0. -->exists('maxi') ans = 0. -->maxi=max//now maxi exists maxi = -->exists('maxi') ans = 1. -->isdef('max') ans = F -->isdef('maxi') ans = T this seems very strange to me, since "max" and "maxi" has the same type ("fptr" and not "function") but are considered differently : -->typeof(max) ans = fptr -->typeof(maxi) ans = fptr i also think in using "whereis" but this also obscure to me : -->whereis(max) !--error 999 whereis : Mauvais type pour l'argument d'entr?e n?1. -->whereis('max') ans = [] -->whereis(imshow) ans = sivplib so i' wait for your ideas! Philippe. From calixte at contrib.scilab.org Sun Jun 12 16:06:25 2011 From: calixte at contrib.scilab.org (Calixte Denizet) Date: Sun, 12 Jun 2011 16:06:25 +0200 Subject: [scilab-Users] test if a scilab macro exists or not In-Reply-To: References: Message-ID: <1307887585.27686.434.camel@Calixte-Dell> Le dimanche 12 juin 2011 ? 15:47 +0200, rouxph a ?crit : > Hi, > Salut Philippe, > > i need to test existence of "deprecated/obsolete" functions in scilab. > i've believed that it was possible with "exists" or "isdef" but i > realize that there is somethings i don't understand in this! For example > consider that i would like to test existence of "sort" (deprecated and > should be replaced by "gsort") : > > exists and isdef seem to work for variables or macros only. For your purpose, you can use getscilabkeywords(). Calixte > > -->exists('sort') > ans = > > 0. > > -->exists('gsort') > ans = > > 0. > > -->isdef('sort') > ans = > > F > > -->isdef('sort','all') > ans = > > F > > although "gsort" exists and "sort" doesn't exists : > > -->sort([1,2]) > !--error 4 > Variable non d?finie: sort > > > > -->gsort([1,2]) > ans = > > 2. 1. > > > another example with "maxi" (obsolete and should be replaced by "max") > > -->exists('max') > ans = > > 0. > > -->exists('maxi') > ans = > > 0. > > -->maxi=max//now maxi exists > maxi = > > > -->exists('maxi') > ans = > > 1. > > -->isdef('max') > ans = > > F > > -->isdef('maxi') > ans = > > T > > > > this seems very strange to me, since "max" and "maxi" has the same type > ("fptr" and not "function") but are considered differently : > > -->typeof(max) > ans = > > fptr > > -->typeof(maxi) > ans = > > fptr > > i also think in using "whereis" but this also obscure to me : > > -->whereis(max) > !--error 999 > whereis : Mauvais type pour l'argument d'entr?e n?1. > > > -->whereis('max') > ans = > > [] > > -->whereis(imshow) > ans = > > sivplib > > so i' wait for your ideas! > > Philippe. > From ludo.wag at laposte.net Sun Jun 12 17:57:20 2011 From: ludo.wag at laposte.net (Orbeman) Date: Sun, 12 Jun 2011 08:57:20 -0700 (PDT) Subject: Add LaTeX expression In-Reply-To: References: <1307859490280-3054886.post@n3.nabble.com> Message-ID: <1307894240177-3055956.post@n3.nabble.com> Very nice ! So, I've another question. When I use xstring with coordinates x,y. How can I do to keep relative coordinate, ie : 0 References: <1307859490280-3054886.post@n3.nabble.com> Message-ID: <1307874051861-3055203.post@n3.nabble.com> Ok thank but I've already seen this page several time ! There is no explication to include an expression give by a program like the exponent n=... in my example. -- View this message in context: http://mailinglists.scilab.org/Add-LaTeX-expression-tp3054886p3055203.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From rouxph.22 at gmail.com Sun Jun 12 23:14:30 2011 From: rouxph.22 at gmail.com (rouxph) Date: Sun, 12 Jun 2011 23:14:30 +0200 Subject: test if a scilab macro exists or not In-Reply-To: <1307887585.27686.434.camel@Calixte-Dell> References: <1307887585.27686.434.camel@Calixte-Dell> Message-ID: Le 12/06/2011 16:06, Calixte Denizet a ?crit : > > exists and isdef seem to work for variables or macros only. > > For your purpose, you can use getscilabkeywords(). thanks Calixte :-) Philippe. From rouxph.22 at gmail.com Sun Jun 12 23:31:06 2011 From: rouxph.22 at gmail.com (rouxph) Date: Sun, 12 Jun 2011 23:31:06 +0200 Subject: Add LaTeX expression In-Reply-To: <1307894240177-3055956.post@n3.nabble.com> References: <1307859490280-3054886.post@n3.nabble.com> <1307894240177-3055956.post@n3.nabble.com> Message-ID: Le 12/06/2011 17:57, Orbeman a ?crit : > > When I use xstring with coordinates x,y. How can I do to keep relative > coordinate, ie : 0 graph in the same window and subplot ? it is not obvious, let's take an example : plot2d(0,0,1,rect=[-1,-2,1,2],axesflag=0),xtring(0,0,"abcdefg") a=gca()//current axes t=a.children(1) // "abcdefg" Text handle to keep relative coordinates you should use a.data_bounds (the rect=...) to know the bounds of the figure and stringbox(t) to calculate the size of the box which contains the Text Handle t : -->a.data_bounds ans = - 1. - 2. 1. 2. -->stringbox(t) ans = 0. 0. 0.1923497 0.1923497 0. 0.1739130 0.1739130 0. Philippe. From paul.carrico at free.fr Mon Jun 13 11:58:29 2011 From: paul.carrico at free.fr (paul.carrico at free.fr) Date: Mon, 13 Jun 2011 11:58:29 +0200 (CEST) Subject: Reading text file In-Reply-To: <889697320.5432961307959101682.JavaMail.root@zimbra26-e5.priv.proxad.net> Message-ID: <1324243804.5432981307959109526.JavaMail.root@zimbra26-e5.priv.proxad.net> Dear All I'm currently trying to read a (huge = 150000 lines and up to 15 column) text file including strings and numbers ... the columns are separated by spaces - csv_readwrite only accept commas as separation character otherwise it fails ! - using read_csv is rather long ... I mean more then an hour to read a record the file !!!!! Does somebody has efficient algorithm for such reading ? Thanks Paul PS : example of code use ########################################################################### mode(0); PATH_FILE = get_absolute_file_path("read_csv.sce"); FILE_NAME = 'bouteille_mixte_p2.msh'; timer(); stacksize('max'); A = read_csv(PATH_FILE + FILE_NAME,ascii(32)); [nl,nc] = size(A); Nbre_noeuds = eval(A(5,1)); Nbre_elements = eval(A(5+Nbre_noeuds+3,1)); Noeuds = []; Elements = []; Noeuds = evstr(A(6:Nbre_noeuds+5,1:4)); Elements = evstr(A(Nbre_noeuds+9:Nbre_noeuds+Nbre_elements+8,:)); Elements(3) = []; Elements(5) = []; temps_cpu = timer(); printf("Temps lecture = %g\n",temps_cpu); clear nl; clear nc; clear A; From ludo.wag at laposte.net Mon Jun 13 19:41:22 2011 From: ludo.wag at laposte.net (Orbeman) Date: Mon, 13 Jun 2011 10:41:22 -0700 (PDT) Subject: Add LaTeX expression In-Reply-To: References: <1307859490280-3054886.post@n3.nabble.com> <1307894240177-3055956.post@n3.nabble.com> Message-ID: <1307986882258-3059720.post@n3.nabble.com> Thank you ! It works fine but this function give the bundaries of the "limit" curve and not axes. There is a round up with particular over value. I don't know exactly the algorithm used but not as simply as ceil(...). -- View this message in context: http://mailinglists.scilab.org/Add-LaTeX-expression-tp3054886p3059720.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From ludo.wag at laposte.net Mon Jun 13 19:57:01 2011 From: ludo.wag at laposte.net (Orbeman) Date: Mon, 13 Jun 2011 10:57:01 -0700 (PDT) Subject: Function fit_data with several curves dependent on parameters In-Reply-To: <1307609754088-3043054.post@n3.nabble.com> References: <1307449811364-3034239.post@n3.nabble.com> <4DEE1C98.3070502@shom.fr> <1307452559588-3034391.post@n3.nabble.com> <55A12CBC06A8C9459DCE0BBEF8122FDC0498B367@exchsrv.AUXITROL1> <1307454054282-3034496.post@n3.nabble.com> <55A12CBC06A8C9459DCE0BBEF8122FDC0498B369@exchsrv.AUXITROL1> <1307456966593-3034675.post@n3.nabble.com> <1307609754088-3043054.post@n3.nabble.com> Message-ID: <1307987821494-3059769.post@n3.nabble.com> Thank you ! I've found a solution of my optimisation. I work so with 4D parameters (epsilon, sigma, epsilon_dot , temperature ). There no really trouble with the Johnson-Cook law and whatever the initial guess of parametres. I will identify the parameters with some others laws (Zerilli-Armstrong, Zhao,...) but in many time the algorithm stop at first or second iteration with the error "zero division". And another question : it is possible to fix a value with a constraint value. A this time with the Johnson-Cook law I've set 2 global parameters with a constant value among 7 but I prefer avoid global parameters. -- View this message in context: http://mailinglists.scilab.org/Function-fit-data-with-several-curves-dependent-on-parameters-tp3034239p3059769.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From Samuel.Gougeon at univ-lemans.fr Mon Jun 13 21:09:42 2011 From: Samuel.Gougeon at univ-lemans.fr (Samuel GOUGEON) Date: Mon, 13 Jun 2011 21:09:42 +0200 Subject: [scilab-Users] Re: Add LaTeX expression In-Reply-To: <1307986882258-3059720.post@n3.nabble.com> References: <1307859490280-3054886.post@n3.nabble.com> <1307894240177-3055956.post@n3.nabble.com> <1307986882258-3059720.post@n3.nabble.com> Message-ID: <4DF66076.1010202@univ-lemans.fr> ----- Message d'origine ----- De : Orbeman Date : 13/06/2011 19:41: > Thank you ! > > It works fine but this function give the bundaries of the "limit" curve and > not axes. There is a round up with particular over value. I don't know > exactly the algorithm used but not as simply as ceil(...). Have a look at : http://bugzilla.scilab.org/show_bug.cgi?id=6311 Samuel From eduardo.torrecillas at gmail.com Mon Jun 13 22:11:44 2011 From: eduardo.torrecillas at gmail.com (Eduardo Torrecillas) Date: Mon, 13 Jun 2011 17:11:44 -0300 Subject: Weird behaviour dealing with matrices Message-ID: Hi all, I have some piece of code and noticed some strange behaviour. As the code is complex and involves external compilation, it is a little bit difficult to post it here, so I will try to explain it in a general way. At some point in the code, I have a structure called interpolados, having 3 matrices. So, I have interpolados(1).matriz interpolados(2).matriz interpolados(3).matriz all of them are sized 497 x 95. Later on, when trying to substitute a column of one of this matrices, I get it destroyed. The syntax I'm using is: interpolados(1).matriz(:,3)=13 I was expecting to maintain the matrix and change only its third column, all with 13. Actually what I'm getting is that interpolados(1).matriz is no longer 497 x 95, but 497 x 1 (only 1 column, all full with 13). System summary: Ubuntu 10.10 64bit + Scilab 5.3.2 Has anybody experienced that? Any issues? Regards, -- Eduardo Torrecillas -------------- next part -------------- An HTML attachment was scrubbed... URL: From vogt at centre-cired.fr Tue Jun 14 15:26:41 2011 From: vogt at centre-cired.fr (Adrien Vogt-Schilb) Date: Tue, 14 Jun 2011 15:26:41 +0200 Subject: [scilab-Users] Weird behaviour dealing with matrices In-Reply-To: References: Message-ID: <4DF76191.1090108@centre-cired.fr> Hi Edouardo This is not a bug, but a feature! you should read this : http://wiki.scilab.org/howto/global%20and%20local%20variables In the commented example, look for the following line : x(3)=56 // note that at this point x=[0 0 56] because of 3. above, *not* [45 0 56] this is exactly want happened to you On 13/06/2011 22:11, Eduardo Torrecillas wrote: > Hi all, > > I have some piece of code and noticed some strange behaviour. As the > code is complex and involves external compilation, it is a little bit > difficult to post it here, so I will try to explain it in a general way. > > At some point in the code, I have a structure called interpolados, > having 3 matrices. So, I have > > interpolados(1).matriz > interpolados(2).matriz > interpolados(3).matriz > > all of them are sized 497 x 95. > > Later on, when trying to substitute a column of one of this matrices, > I get it destroyed. > The syntax I'm using is: > > interpolados(1).matriz(:,3)=13 > > I was expecting to maintain the matrix and change only its third > column, all with 13. Actually what I'm getting is that > interpolados(1).matriz is no longer 497 x 95, but 497 x 1 (only 1 > column, all full with 13). > > System summary: Ubuntu 10.10 64bit + Scilab 5.3.2 > > Has anybody experienced that? Any issues? > > Regards, > > > -- > Eduardo Torrecillas -- *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 eduardo.torrecillas at gmail.com Tue Jun 14 15:47:03 2011 From: eduardo.torrecillas at gmail.com (Eduardo Torrecillas) Date: Tue, 14 Jun 2011 10:47:03 -0300 Subject: [scilab-Users] Weird behaviour dealing with matrices In-Reply-To: <4DF76191.1090108@centre-cired.fr> References: <4DF76191.1090108@centre-cired.fr> Message-ID: Hi Adrien, Thanks for your reply, but that's not exactly what I meant. I understand in your example we're dealing with passing variables through different functions. In my case, it's all inside the same function. Also, apparently the behaviour is erratic: it works sometimes and sometimes not. Regards, On Tue, Jun 14, 2011 at 10:26 AM, Adrien Vogt-Schilb wrote: > Hi Edouardo > > This is not a bug, but a feature! > > you should read this : > http://wiki.scilab.org/howto/global%20and%20local%20variables > > In the commented example, look for the following line : > > x(3)=56 // note that at this point x=[0 0 56] because of 3. above, *not* [45 0 56] > > this is exactly want happened to you > > > > On 13/06/2011 22:11, Eduardo Torrecillas wrote: > > Hi all, > > I have some piece of code and noticed some strange behaviour. As the code > is complex and involves external compilation, it is a little bit difficult > to post it here, so I will try to explain it in a general way. > > At some point in the code, I have a structure called interpolados, having 3 > matrices. So, I have > > interpolados(1).matriz > interpolados(2).matriz > interpolados(3).matriz > > all of them are sized 497 x 95. > > Later on, when trying to substitute a column of one of this matrices, I get > it destroyed. > The syntax I'm using is: > > interpolados(1).matriz(:,3)=13 > > I was expecting to maintain the matrix and change only its third column, > all with 13. Actually what I'm getting is that interpolados(1).matriz is no > longer 497 x 95, but 497 x 1 (only 1 column, all full with 13). > > System summary: Ubuntu 10.10 64bit + Scilab 5.3.2 > > Has anybody experienced that? Any issues? > > Regards, > > > -- > Eduardo Torrecillas > > > > -- > > *Adrien Vogt-Schilb* > > Research Fellow > > vogt at centre-cired.fr > > Tel: (+33) 1 43 94 73 96 > > Fax: (+33) 1 43 94 73 70 > > [image: CIRED] > > 45 bis, Av de la Belle Gabrielle > > F-94736 Nogent-sur-Marne > > http://www.centre-cired.fr/ > > > -- Eduardo Torrecillas AER-09 -------------- next part -------------- An HTML attachment was scrubbed... URL: From vogt at centre-cired.fr Tue Jun 14 15:51:36 2011 From: vogt at centre-cired.fr (Adrien Vogt-Schilb) Date: Tue, 14 Jun 2011 15:51:36 +0200 Subject: [scilab-Users] Weird behaviour dealing with matrices In-Reply-To: References: <4DF76191.1090108@centre-cired.fr> Message-ID: <4DF76768.6070004@centre-cired.fr> Hi are you sure you are not using "pause", for instance? pause calls a new memory level On 14/06/2011 15:47, Eduardo Torrecillas wrote: > Hi Adrien, > > Thanks for your reply, but that's not exactly what I meant. > I understand in your example we're dealing with passing variables > through different functions. In my case, it's all inside the same > function. > Also, apparently the behaviour is erratic: it works sometimes and > sometimes not. > > Regards, > > On Tue, Jun 14, 2011 at 10:26 AM, Adrien Vogt-Schilb > > wrote: > > Hi Edouardo > > This is not a bug, but a feature! > > you should read this : > http://wiki.scilab.org/howto/global%20and%20local%20variables > > In the commented example, look for the following line : > > x(3)=56 // note that at this point x=[0 0 56] because of 3. above, *not* [45 0 56] > > this is exactly want happened to you > > > > On 13/06/2011 22:11, Eduardo Torrecillas wrote: >> Hi all, >> >> I have some piece of code and noticed some strange behaviour. As >> the code is complex and involves external compilation, it is a >> little bit difficult to post it here, so I will try to explain it >> in a general way. >> >> At some point in the code, I have a structure called >> interpolados, having 3 matrices. So, I have >> >> interpolados(1).matriz >> interpolados(2).matriz >> interpolados(3).matriz >> >> all of them are sized 497 x 95. >> >> Later on, when trying to substitute a column of one of this >> matrices, I get it destroyed. >> The syntax I'm using is: >> >> interpolados(1).matriz(:,3)=13 >> >> I was expecting to maintain the matrix and change only its third >> column, all with 13. Actually what I'm getting is that >> interpolados(1).matriz is no longer 497 x 95, but 497 x 1 (only 1 >> column, all full with 13). >> >> System summary: Ubuntu 10.10 64bit + Scilab 5.3.2 >> >> Has anybody experienced that? Any issues? >> >> Regards, >> >> >> -- >> Eduardo Torrecillas > > > -- > > *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/ > > > > > -- > Eduardo Torrecillas > AER-09 -- *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 eduardo.torrecillas at gmail.com Tue Jun 14 16:01:59 2011 From: eduardo.torrecillas at gmail.com (Eduardo Torrecillas) Date: Tue, 14 Jun 2011 11:01:59 -0300 Subject: [scilab-Users] Weird behaviour dealing with matrices In-Reply-To: <4DF76768.6070004@centre-cired.fr> References: <4DF76191.1090108@centre-cired.fr> <4DF76768.6070004@centre-cired.fr> Message-ID: Thank you so much! I was fooled by the pause memory level, was using it as a "debugger". Regards, On Tue, Jun 14, 2011 at 10:51 AM, Adrien Vogt-Schilb wrote: > Hi > > are you sure you are not using "pause", for instance? > > pause calls a new memory level > > > On 14/06/2011 15:47, Eduardo Torrecillas wrote: > > Hi Adrien, > > Thanks for your reply, but that's not exactly what I meant. > I understand in your example we're dealing with passing variables through > different functions. In my case, it's all inside the same function. > Also, apparently the behaviour is erratic: it works sometimes and sometimes > not. > > Regards, > > On Tue, Jun 14, 2011 at 10:26 AM, Adrien Vogt-Schilb > wrote: > >> Hi Edouardo >> >> This is not a bug, but a feature! >> >> you should read this : >> http://wiki.scilab.org/howto/global%20and%20local%20variables >> >> In the commented example, look for the following line : >> >> x(3)=56 // note that at this point x=[0 0 56] because of 3. above, *not* [45 0 56] >> >> this is exactly want happened to you >> >> >> >> On 13/06/2011 22:11, Eduardo Torrecillas wrote: >> >> Hi all, >> >> I have some piece of code and noticed some strange behaviour. As the code >> is complex and involves external compilation, it is a little bit difficult >> to post it here, so I will try to explain it in a general way. >> >> At some point in the code, I have a structure called interpolados, having >> 3 matrices. So, I have >> >> interpolados(1).matriz >> interpolados(2).matriz >> interpolados(3).matriz >> >> all of them are sized 497 x 95. >> >> Later on, when trying to substitute a column of one of this matrices, I >> get it destroyed. >> The syntax I'm using is: >> >> interpolados(1).matriz(:,3)=13 >> >> I was expecting to maintain the matrix and change only its third column, >> all with 13. Actually what I'm getting is that interpolados(1).matriz is no >> longer 497 x 95, but 497 x 1 (only 1 column, all full with 13). >> >> System summary: Ubuntu 10.10 64bit + Scilab 5.3.2 >> >> Has anybody experienced that? Any issues? >> >> Regards, >> >> >> -- >> Eduardo Torrecillas >> >> >> >> -- >> >> *Adrien Vogt-Schilb* >> >> Research Fellow >> >> vogt at centre-cired.fr >> >> Tel: (+33) 1 43 94 73 96 >> >> Fax: (+33) 1 43 94 73 70 >> >> [image: CIRED] >> >> 45 bis, Av de la Belle Gabrielle >> >> F-94736 Nogent-sur-Marne >> >> http://www.centre-cired.fr/ >> >> >> > > > > -- > Eduardo Torrecillas > AER-09 > > > > -- > > *Adrien Vogt-Schilb* > > Research Fellow > > vogt at centre-cired.fr > > Tel: (+33) 1 43 94 73 96 > > Fax: (+33) 1 43 94 73 70 > > [image: CIRED] > > 45 bis, Av de la Belle Gabrielle > > F-94736 Nogent-sur-Marne > > http://www.centre-cired.fr/ > > > -- Eduardo Torrecillas AER-09 -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.cheze at cea.fr Tue Jun 14 16:24:13 2011 From: david.cheze at cea.fr (=?UTF-8?Q?David_Ch=C3=A8ze?=) Date: Tue, 14 Jun 2011 07:24:13 -0700 (PDT) Subject: Weird behaviour dealing with matrices In-Reply-To: References: <4DF76191.1090108@centre-cired.fr> <4DF76768.6070004@centre-cired.fr> Message-ID: <1308061453344-3063202.post@n3.nabble.com> Hi, I was just puzzling with a similar problem, also using 'pause' keyword as a multithreaded "debugger"... : is there any other way to do real 'debugging' ? or only 'disp()' ? It is somewhat tricky if you don't read in detail this wiki page... Thanks for your advice, David -- View this message in context: http://mailinglists.scilab.org/Weird-behaviour-dealing-with-matrices-tp3060418p3063202.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From vogt at centre-cired.fr Tue Jun 14 16:28:03 2011 From: vogt at centre-cired.fr (Adrien Vogt-Schilb) Date: Tue, 14 Jun 2011 16:28:03 +0200 Subject: [scilab-Users] Re: Weird behaviour dealing with matrices In-Reply-To: <1308061453344-3063202.post@n3.nabble.com> References: <4DF76191.1090108@centre-cired.fr> <4DF76768.6070004@centre-cired.fr> <1308061453344-3063202.post@n3.nabble.com> Message-ID: <4DF76FF3.2080404@centre-cired.fr> hi a work around for debugging: add lines that read before actual computation: //reading the variable for pause-debugging compatibility interpolados = interpolados; //real work interpolados(1).matriz(:,3)=13 On 14/06/2011 16:24, David Ch?ze wrote: > Hi, > > I was just puzzling with a similar problem, also using 'pause' keyword as a > multithreaded "debugger"... : is there any other way to do real 'debugging' > ? or only 'disp()' ? > > It is somewhat tricky if you don't read in detail this wiki page... > > Thanks for your advice, > > David > > > -- > View this message in context: http://mailinglists.scilab.org/Weird-behaviour-dealing-with-matrices-tp3060418p3063202.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 jean-francois.bisson at valeo.com Tue Jun 14 18:50:53 2011 From: jean-francois.bisson at valeo.com (Jean-Francois BISSON) Date: Tue, 14 Jun 2011 18:50:53 +0200 Subject: SciLab / Symbolic tool box ? Message-ID: Hello, Do you have an equivalent within SciLab of the Symbolic toolbox of MatLab ? Best regards/Cordialement. Jean-Fran?ois BISSON Simulation Team Manager GEEDS / Group Electronic Expertise and Development Services 2, rue Andr? Boulle / B.P. 150 94046 CRETEIL - FRANCE Tel : +33 (0)1 80 51 49 12 Fax: +33 (0)1 48 98 28 68 Port: +33 (0)6 14 32 24 49 Avant d'imprimer, pensez a l'environnement ! - Before printing, think about the environment ! This e-mail message is intended only for the use of the intended recipient(s). The information contained therein may be confidential or privileged, and its disclosure or reproduction is strictly prohibited. If you are not the intended recipient, please return it immediately to its sender at the above address and destroy it. -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.cheze at cea.fr Wed Jun 15 08:13:50 2011 From: david.cheze at cea.fr (=?UTF-8?Q?David_Ch=C3=A8ze?=) Date: Tue, 14 Jun 2011 23:13:50 -0700 (PDT) Subject: SciLab / Symbolic tool box ? In-Reply-To: References: Message-ID: <1308118430492-3066162.post@n3.nabble.com> Hello, you can have a look at: http://wiki.scilab.org/Matlab%20Toolboxes%20in%20Scilab wiki -- View this message in context: http://mailinglists.scilab.org/SciLab-Symbolic-tool-box-tp3064757p3066162.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From jaume.figueras at upc.edu Wed Jun 15 11:16:28 2011 From: jaume.figueras at upc.edu (=?ISO-8859-1?Q?Jaume_Figueras_i_Jov=E9?=) Date: Wed, 15 Jun 2011 11:16:28 +0200 Subject: Can't start Scilab in Ubuntu 10.04LTS Message-ID: <4DF8786C.9070900@upc.edu> Hi all, I had been using Scilab from repos two months ago with no issues. Today when I try to start scilab I get the following error: Cannot find this look and feel: [GTK look and feel - com.sun.java.swing.plaf.gtk.GTKLookAndFeel] not supported on this platform Error during the initialization of the window: null I suppose that an update has broken scilab installation. I've tryed with all jre I've installed in my system through sudo update-alternatives --config java with same results. Scilab version is: Scilab version "5.2.0.1266391513" scilab-5.2.1 Has anyone encountered the same problem? Cheers, -- Jaume Figueras i Jov? Ubuntu User #14347 - Linux User #504317 Universitat Polit?cnica de Catalunya Departament d'ESAII Edifici TR11 Rambla Sant Nebridi, 10 08222 TERRASSA Telf: +34937398621 (intern UPC: 98621) M?bil: +34650756456 (intern UPC: 44785) Fax: +34937398628 (intern UPC: 98628) Centre de Simulaci? i Optimitzaci? de Processos Log?stics (LogiSim) http://logisim.fib.upc.es Enginyeria de Sistemes, Autom?tica i Inform?tica Industrial (ESAII) http://webesaii.upc.es Universitat Polit?cnica de Cataluyna http://www.upc.edu From sylvestre.ledru at scilab.org Wed Jun 15 11:20:24 2011 From: sylvestre.ledru at scilab.org (Sylvestre Ledru) Date: Wed, 15 Jun 2011 11:20:24 +0200 Subject: [scilab-Users] Can't start Scilab in Ubuntu 10.04LTS In-Reply-To: <4DF8786C.9070900@upc.edu> References: <4DF8786C.9070900@upc.edu> Message-ID: <1308129624.23539.14.camel@korcula.inria.fr> Hello, Do you know which updates you did recently ? Are you using Scilab through an ssh connexion ? What happens if you try JAVA_HOME=/usr/lib/jvm/java-6-sun/ scilab or JAVA_HOME=/usr/lib/jvm/java-6-openjdk/ scilab Thanks, Sylvestre Le mercredi 15 juin 2011 ? 11:16 +0200, Jaume Figueras i Jov? a ?crit : > Hi all, > > I had been using Scilab from repos two months ago with no issues. Today > when I try to start scilab I get the following error: > > Cannot find this look and feel: > [GTK look and feel - com.sun.java.swing.plaf.gtk.GTKLookAndFeel] not > supported on this platform > Error during the initialization of the window: null > > I suppose that an update has broken scilab installation. > > I've tryed with all jre I've installed in my system through > > sudo update-alternatives --config java > > with same results. > > Scilab version is: > > Scilab version "5.2.0.1266391513" > scilab-5.2.1 > > Has anyone encountered the same problem? > > Cheers, From jaume.figueras at upc.edu Wed Jun 15 12:49:22 2011 From: jaume.figueras at upc.edu (=?UTF-8?B?SmF1bWUgRmlndWVyYXMgaSBKb3bDqQ==?=) Date: Wed, 15 Jun 2011 12:49:22 +0200 Subject: [scilab-Users] Can't start Scilab in Ubuntu 10.04LTS In-Reply-To: <1308129624.23539.14.camel@korcula.inria.fr> References: <4DF8786C.9070900@upc.edu> <1308129624.23539.14.camel@korcula.inria.fr> Message-ID: <4DF88E32.7050501@upc.edu> Hello, On 06/15/2011 11:20 AM, Sylvestre Ledru wrote: > Do you know which updates you did recently ? I do not remeber exactly but I've installed all lucid-security and lucid-updates until today. Added extra repos from oracle (java & VBox) & ubuntu-gis-stable > Are you using Scilab through an ssh connexion ? no. > What happens if you try > JAVA_HOME=/usr/lib/jvm/java-6-sun/ scilab runs correctly. > JAVA_HOME=/usr/lib/jvm/java-6-openjdk/ scilab generates the error of GTK LaF. Thanks, -- Jaume Figueras i Jov? Ubuntu User #14347 - Linux User #504317 Universitat Polit?cnica de Catalunya Departament d'ESAII Edifici TR11 Rambla Sant Nebridi, 10 08222 TERRASSA Telf: +34937398621 (intern UPC: 98621) M?bil: +34650756456 (intern UPC: 44785) Fax: +34937398628 (intern UPC: 98628) Centre de Simulaci? i Optimitzaci? de Processos Log?stics (LogiSim) http://logisim.fib.upc.es Enginyeria de Sistemes, Autom?tica i Inform?tica Industrial (ESAII) http://webesaii.upc.es Universitat Polit?cnica de Cataluyna http://www.upc.edu From sylvestre.ledru at scilab.org Wed Jun 15 15:38:13 2011 From: sylvestre.ledru at scilab.org (Sylvestre Ledru) Date: Wed, 15 Jun 2011 15:38:13 +0200 Subject: [scilab-Users] Can't start Scilab in Ubuntu 10.04LTS In-Reply-To: <4DF88E32.7050501@upc.edu> References: <4DF8786C.9070900@upc.edu> <1308129624.23539.14.camel@korcula.inria.fr> <4DF88E32.7050501@upc.edu> Message-ID: <1308145098.25878.144.camel@losinj.inria.fr> Le mercredi 15 juin 2011 ? 12:49 +0200, Jaume Figueras i Jov? a ?crit : > Hello, > > On 06/15/2011 11:20 AM, Sylvestre Ledru wrote: > > Do you know which updates you did recently ? > > I do not remeber exactly but I've installed all lucid-security and > lucid-updates until today. Added extra repos from oracle (java & VBox) What is that ? (the oracle java repository) > > JAVA_HOME=/usr/lib/jvm/java-6-openjdk/ scilab > > generates the error of GTK LaF. OK. What is the result of dpkg -l|grep openjdk thanks S From eduardo.torrecillas at gmail.com Wed Jun 15 16:45:00 2011 From: eduardo.torrecillas at gmail.com (Eduardo Torrecillas) Date: Wed, 15 Jun 2011 11:45:00 -0300 Subject: Dealing with plots and memory issues Message-ID: Hi all, I have a script basically using functions below, inside a loop: fig=figure(countfig) f=scf(fig) plot2d(...) x2eps(...) close(fig) Unfortunately, when the number of images is huge, I always get memory errors (saying memory is empty) and the script is aborted. Is there any way to clear memory after each plotting/saving to avoid this? Regards, -- Eduardo Torrecillas AER-09 -------------- next part -------------- An HTML attachment was scrubbed... URL: From BlanchardJ at ieee.org Wed Jun 15 17:10:44 2011 From: BlanchardJ at ieee.org (Jonathan Blanchard) Date: Wed, 15 Jun 2011 12:10:44 -0300 Subject: [scilab-Users] Dealing with plots and memory issues In-Reply-To: References: Message-ID: On Wed, Jun 15, 2011 at 11:45 AM, Eduardo Torrecillas wrote: > Hi all, > > I have a script basically using functions below, inside a loop: > > fig=figure(countfig) > f=scf(fig) > plot2d(...) > x2eps(...) > close(fig) > > Unfortunately, when the number of images is huge, I always get memory errors > (saying memory is empty) and the script is aborted. > Is there any way to clear memory after each plotting/saving to avoid this? > > Regards, > -- > Eduardo Torrecillas > AER-09 > You may want to try clearing the current figure using clf() instead of creating a new one each time. I found that method better suited when generating a lot of figures and also somewhat faster. Jonathan Blanchard From eduardo.torrecillas at gmail.com Wed Jun 15 18:34:19 2011 From: eduardo.torrecillas at gmail.com (Eduardo Torrecillas) Date: Wed, 15 Jun 2011 13:34:19 -0300 Subject: [scilab-Users] Dealing with plots and memory issues In-Reply-To: References: Message-ID: Thanks Jonathan! It works fine and its much faster! Regards, On Wed, Jun 15, 2011 at 12:10 PM, Jonathan Blanchard wrote: > On Wed, Jun 15, 2011 at 11:45 AM, Eduardo Torrecillas > wrote: > > Hi all, > > > > I have a script basically using functions below, inside a loop: > > > > fig=figure(countfig) > > f=scf(fig) > > plot2d(...) > > x2eps(...) > > close(fig) > > > > Unfortunately, when the number of images is huge, I always get memory > errors > > (saying memory is empty) and the script is aborted. > > Is there any way to clear memory after each plotting/saving to avoid > this? > > > > Regards, > > -- > > Eduardo Torrecillas > > AER-09 > > > > You may want to try clearing the current figure using clf() instead of > creating a new one each time. I found that method better suited when > generating a lot of figures and also somewhat faster. > > Jonathan Blanchard > -- Eduardo Torrecillas AER-09 -------------- next part -------------- An HTML attachment was scrubbed... URL: From vogt at centre-cired.fr Wed Jun 15 18:42:48 2011 From: vogt at centre-cired.fr (Adrien Vogt-Schilb) Date: Wed, 15 Jun 2011 18:42:48 +0200 Subject: Getting code for automatic plot building In-Reply-To: References: Message-ID: <4DF8E108.3010708@centre-cired.fr> Hi Does anyone know if it is possible to modify plot styles with the GUI (for instance, select a curve with the mouse, set the color to red, and the thickness to 3), and then get the code that would allow to have the same plot formated automatically (like a=gca(); e=a.children(3); e.color=red; e.thickness=3; -or similar, and so on) ? This would be so usefull in order to format plot for publishing Thank you -- *Adrien Vogt-Schilb* -------------- next part -------------- An HTML attachment was scrubbed... URL: From rouxph.22 at gmail.com Wed Jun 15 19:24:51 2011 From: rouxph.22 at gmail.com (rouxph) Date: Wed, 15 Jun 2011 19:24:51 +0200 Subject: SciLab / Symbolic tool box ? In-Reply-To: References: Message-ID: Hi, Le 14/06/2011 18:50, Jean-Francois BISSON a ?crit : > > Do you have an equivalent within SciLab of the Symbolic toolbox of MatLab ? they're two symbolic toolboxes available for scilab : - the OVLD/SYM toolbox by J-F Magni - the overload/scimax toolbox by C. Denizet http://forge.scilab.org/index.php/p/scimax/ both toolbox use maxima to do symbolic calculations so you need first to install maxima (http://maxima.sourceforge.net/). there differences lie in the maxima/scilab communication - for the OVLD/SYM toolbox by J-F Magni communication between maxima an scilab was based on a socket and a perl script so it's a little bit slow (and requires that perl be installed) but it works on both windows and unix - after the death of J-F Magni (2008?) C. Denizet write a similar toolbox (overload/scimax) where the communication between scilab and maxima was greatly improved but it works only on unix system (because communication use "fork"?). Since J-F Magni death 3 year ago is toolbox is not maintained any more but it still works fine with scilab 5.x after some modifications (see http://www.equalis.com/forums/posts.asp?topic=258177&) the biggest problem is to retrieve OVLD/SYM source code since J-F Magni web page has disappear of the onera website ((http://www.cert.fr/). So you should try overload/scimax ... Philippe. From xwang1976 at email.it Wed Jun 15 22:35:51 2011 From: xwang1976 at email.it (xwang1976 at email.it) Date: Wed, 15 Jun 2011 22:35:51 +0200 Subject: *****SPAM***** Re: Call scilab function from xcos In-Reply-To: <4DF4A2D3.8020408@email.it> References: <4DF4A2D3.8020408@email.it> Message-ID: <4DF917A7.5080003@email.it> Hi to all, I've tried to use the scifunc_block and it works in xcos, but if I try to generate the code of the somma_xcos block from the testSomma3 model, the compilation stop with the following message: !La funzione non ? definita per i tipi di argomento forniti. ! ! ! ! controllare gli argomenti o definire una funzione %mc_part per l'overloading. ! I've searched the net for a solution, but I heven't found anything. Can you help me, please? Thank you, Xwang Il 12/06/2011 13:28, xwang1976 at email.it ha scritto: > Hi to all, > I would like to know how to call a scilab function (defined in a .sci > file) inside an xcos model. > I've seen the generic_block3, but I haven't understood well how it work. > Is it the correct block to use? Is there any useful tutorial? > Thank you, > Xwang -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: somma.sci URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: somma.xcos Type: text/xml Size: 67617 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: testSomma3.xcos Type: text/xml Size: 85234 bytes Desc: not available URL: From paul.carrico at free.fr Thu Jun 16 08:23:56 2011 From: paul.carrico at free.fr (Paul CARRICO) Date: Thu, 16 Jun 2011 08:23:56 +0200 Subject: How to activate several processors ? Message-ID: <000b01cc2bed$f915a2d0$eb40e870$@carrico@free.fr> Dear All, I'm thinking in using search algorithm by dichotomy on a work station having several cores (2 processors - 8 cores) . is it possible to select several processors to increase the speed up ? If so where can I find some information ? Regards Paul -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.cheze at cea.fr Thu Jun 16 08:53:14 2011 From: david.cheze at cea.fr (=?UTF-8?Q?David_Ch=C3=A8ze?=) Date: Wed, 15 Jun 2011 23:53:14 -0700 (PDT) Subject: why is editvar so slow ? In-Reply-To: References: Message-ID: <1308207194700-3070818.post@n3.nabble.com> what is the difference between editvar and excel editing that could explain the needed duration difference to edit the matrix ? since excel embbed significantly more features i would understand that it requires more time for excel, not for editvar. Any idea ? Thanks for your help, David -- View this message in context: http://mailinglists.scilab.org/is-editvar-very-slow-tp3048080p3070818.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From david.cheze at cea.fr Thu Jun 16 08:54:14 2011 From: david.cheze at cea.fr (=?UTF-8?Q?David_Ch=C3=A8ze?=) Date: Wed, 15 Jun 2011 23:54:14 -0700 (PDT) Subject: is editvar very slow ? In-Reply-To: References: Message-ID: <1308207254540-3070819.post@n3.nabble.com> what is the difference between editvar and excel editing that could explain the needed duration difference to edit the matrix ? since excel embbed significantly more features i would understand that it requires more time for excel, not for editvar. Any idea ? Thanks for your help, David -- View this message in context: http://mailinglists.scilab.org/is-editvar-very-slow-tp3048080p3070819.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From rouxph.22 at gmail.com Thu Jun 16 08:57:57 2011 From: rouxph.22 at gmail.com (rouxph) Date: Thu, 16 Jun 2011 08:57:57 +0200 Subject: xmltojar problems Message-ID: Hi, I try to generate a .jar help file, from *.xml files in the current directory, and I've the following error message with xmltojar : 8<----8<----8<----8<----8<----8<----8<----8<----8<----8<----8<----8<---- -->xmltojar(pwd(),'symbolic') Construit le document ma?tre: SCI\contrib\SYM\xml\en_US Building the manual file [javaHelp] in SCI\contrib\SYM\xml\en_US. An error occured during the conversion: java.lang.IllegalArgumentException at sun.net.www.ParseUtil.decode(Unknown Source) at sun.net.www.protocol.file.Handler.openConnection(Unknown Source) at sun.net.www.protocol.file.Handler.openConnection(Unknown Source) at java.net.URL.openConnection(Unknown Source) at com.icl.saxon.aelfred.XmlParser.pushURL(XmlParser.java:3616) at com.icl.saxon.aelfred.XmlParser.parseEntityRef(XmlParser.java:1790) at com.icl.saxon.aelfred.XmlParser.parseContent(XmlParser.java:1183) at com.icl.saxon.aelfred.XmlParser.parseElement(XmlParser.java:1037) at com.icl.saxon.aelfred.XmlParser.parseContent(XmlParser.java:1222) at com.icl.saxon.aelfred.XmlParser.parseElement(XmlParser.java:1037) at com.icl.saxon.aelfred.XmlParser.parseDocument(XmlParser.java:510) at com.icl.saxon.aelfred.XmlParser.doParse(XmlParser.java:163) at com.icl.saxon.aelfred.SAXDriver.parse(SAXDriver.java:320) at javax.xml.parsers.SAXParser.parse(Unknown Source) at javax.xml.parsers.SAXParser.parse(Unknown Source) at org.scilab.forge.scidoc.HTMLDocbookLinkResolver.resolvLinks(Unknown Source) at org.scilab.forge.scidoc.HTMLDocbookLinkResolver.(Unknown Source) at org.scilab.forge.scidoc.HTMLDocbookTagConverter.(Unknown Source) at org.scilab.forge.scidoc.JavaHelpDocbookTagConverter.(Unknown Source) at org.scilab.forge.scidoc.SciDocMain.process(Unknown Source) !--error 10000 xmltoformat : C:\Program Files (x86)\scilab-5.3.1\contrib\SYM\xml\en_US\scilab_en_US_help\scilab_en_US_help.jar n'a pas ?t? g?n?r?. at line 736 of function xmltoformat called by : at line 13 of function xmltojar called by : xmltojar(pwd(),'symbolic') 8<----8<----8<----8<----8<----8<----8<----8<----8<----8<----8<----8<----8<---- Could someone tell me if there's a problem in the *.xml structure of my help files below ? if not what is the problem with xmltojar : 8<----8<----8<----8<----8<----8<----8<----8<----8<----8<----8<----8<----8<---- $LastChangedDate$ bfloat Converts all numbers and functions of numbers in input argument to bigfloat numbers. synopsis [bb] = bfloat(aa,nn) Parameters aa Symbolic expression or symbolic number nn number of significant digits bb Symbolic expression or symbolic number Description Big float numbers might have a very large number of significant digits, therefore, these numbers are meaningless in Scilab workspace. For this reason the Maxima form (e.g., 3.333333b-1) is preserver. For an evaluation in Scilab workspace, use the function double. Examples see also float sym/dbl 8<----8<----8<----8<----8<----8<----8<----8<----8<----8<----8<----8<----8<---- philippe. From jaume.figueras at upc.edu Thu Jun 16 09:40:23 2011 From: jaume.figueras at upc.edu (=?ISO-8859-1?Q?Jaume_Figueras_i_Jov=E9?=) Date: Thu, 16 Jun 2011 09:40:23 +0200 Subject: [scilab-Users] Can't start Scilab in Ubuntu 10.04LTS In-Reply-To: <1308145098.25878.144.camel@losinj.inria.fr> References: <4DF8786C.9070900@upc.edu> <1308129624.23539.14.camel@korcula.inria.fr> <4DF88E32.7050501@upc.edu> <1308145098.25878.144.camel@losinj.inria.fr> Message-ID: <4DF9B367.7080001@upc.edu> Hi, On 06/15/2011 03:38 PM, Sylvestre Ledru wrote: > What is that ? (the oracle java repository) Sorry I made a mistake. I meant the ubuntu-partner repo with java-sun installed. > What is the result of > dpkg -l|grep openjdk rc openjdk-6-jre 6b20-1.9.7-0ubuntu1~10.04.1 OpenJDK Java runtime, using Hotspot JIT ii openjdk-6-jre-headless 6b20-1.9.7-0ubuntu1~10.04.1 OpenJDK Java runtime, using Hotspot JIT (hea ii openjdk-6-jre-lib 6b20-1.9.7-0ubuntu1~10.04.1 OpenJDK Java runtime (architecture independe Salut! -- Jaume Figueras i Jov? Ubuntu User #14347 - Linux User #504317 Universitat Polit?cnica de Catalunya Departament d'ESAII Edifici TR11 Rambla Sant Nebridi, 10 08222 TERRASSA Telf: +34937398621 (intern UPC: 98621) M?bil: +34650756456 (intern UPC: 44785) Fax: +34937398628 (intern UPC: 98628) Centre de Simulaci? i Optimitzaci? de Processos Log?stics (LogiSim) http://logisim.fib.upc.es Enginyeria de Sistemes, Autom?tica i Inform?tica Industrial (ESAII) http://webesaii.upc.es Universitat Polit?cnica de Cataluyna http://www.upc.edu From calixte at contrib.scilab.org Thu Jun 16 11:08:16 2011 From: calixte at contrib.scilab.org (Calixte Denizet) Date: Thu, 16 Jun 2011 11:08:16 +0200 Subject: [scilab-Users] xmltojar problems In-Reply-To: References: Message-ID: <1308215296.27686.970.camel@Calixte-Dell> Le jeudi 16 juin 2011 ? 08:57 +0200, rouxph a ?crit : > Hi, > Salut Philippe, i) Could you attach the file master_help.xml which has been generated in your help directory ? ii) Could you make a try in putting your xml files in a directory where the full absolute path doesn't contain any space chars ? iii) the tag is not handled, you should use instead. Calixte > I try to generate a .jar help file, from *.xml files in the current > directory, and I've the following error message with xmltojar : > > > 8<----8<----8<----8<----8<----8<----8<----8<----8<----8<----8<----8<---- > -->xmltojar(pwd(),'symbolic') > > Construit le document ma?tre: > SCI\contrib\SYM\xml\en_US > > Building the manual file [javaHelp] in SCI\contrib\SYM\xml\en_US. > An error occured during the conversion: > > java.lang.IllegalArgumentException > at sun.net.www.ParseUtil.decode(Unknown Source) > at sun.net.www.protocol.file.Handler.openConnection(Unknown Source) > at sun.net.www.protocol.file.Handler.openConnection(Unknown Source) > at java.net.URL.openConnection(Unknown Source) > at com.icl.saxon.aelfred.XmlParser.pushURL(XmlParser.java:3616) > at com.icl.saxon.aelfred.XmlParser.parseEntityRef(XmlParser.java:1790) > at com.icl.saxon.aelfred.XmlParser.parseContent(XmlParser.java:1183) > at com.icl.saxon.aelfred.XmlParser.parseElement(XmlParser.java:1037) > at com.icl.saxon.aelfred.XmlParser.parseContent(XmlParser.java:1222) > at com.icl.saxon.aelfred.XmlParser.parseElement(XmlParser.java:1037) > at com.icl.saxon.aelfred.XmlParser.parseDocument(XmlParser.java:510) > at com.icl.saxon.aelfred.XmlParser.doParse(XmlParser.java:163) > at com.icl.saxon.aelfred.SAXDriver.parse(SAXDriver.java:320) > at javax.xml.parsers.SAXParser.parse(Unknown Source) > at javax.xml.parsers.SAXParser.parse(Unknown Source) > at org.scilab.forge.scidoc.HTMLDocbookLinkResolver.resolvLinks(Unknown > Source) > at org.scilab.forge.scidoc.HTMLDocbookLinkResolver.(Unknown Source) > at org.scilab.forge.scidoc.HTMLDocbookTagConverter.(Unknown Source) > at org.scilab.forge.scidoc.JavaHelpDocbookTagConverter.(Unknown > Source) > at org.scilab.forge.scidoc.SciDocMain.process(Unknown Source) > !--error 10000 > xmltoformat : C:\Program Files > (x86)\scilab-5.3.1\contrib\SYM\xml\en_US\scilab_en_US_help\scilab_en_US_help.jar > n'a pas ?t? g?n?r?. > at line 736 of function xmltoformat called by : > at line 13 of function xmltojar called by : > xmltojar(pwd(),'symbolic') > > 8<----8<----8<----8<----8<----8<----8<----8<----8<----8<----8<----8<----8<---- > > Could someone tell me if there's a problem in the *.xml structure of my > help files below ? if not what is the problem with xmltojar : > 8<----8<----8<----8<----8<----8<----8<----8<----8<----8<----8<----8<----8<---- > > > xmlns:xlink="http://www.w3.org/1999/xlink" > xmlns:svg="http://www.w3.org/2000/svg" > xmlns:mml="http://www.w3.org/1998/Math/MathML" > xmlns:db="http://docbook.org/ns/docbook" version="5.0-subset Scilab" > xml:lang="fr" xml:id="bfloat"> > > $LastChangedDate$ > > > bfloat > Converts all numbers and functions of numbers in input > argument to bigfloat numbers. > > > > synopsis > [bb] = bfloat(aa,nn) > > > Parameters > > > aa > > > Symbolic expression or symbolic number > > > > nn > > > number of significant digits > > > > > > bb > > > Symbolic expression or symbolic number > > > > > > > > Description > > Big float numbers might have a very large number of > significant > digits, therefore, these numbers are meaningless in Scilab > workspace. For this reason the Maxima form (e.g., > 3.333333b-1) > is preserver. For an evaluation in Scilab workspace, use the > function double. > > > > > Examples > > x = log(sym('3')) - log(3) > y = float(x) > > bfloat(sym('%pi'),2400) // pi with 2400 digits > > ]]> > > > see also > > > float > > > sym/dbl > > > > > 8<----8<----8<----8<----8<----8<----8<----8<----8<----8<----8<----8<----8<---- > > > philippe. > From rouxph.22 at gmail.com Thu Jun 16 11:36:00 2011 From: rouxph.22 at gmail.com (philippe) Date: Thu, 16 Jun 2011 11:36:00 +0200 Subject: xmltojar problems In-Reply-To: <1308215296.27686.970.camel@Calixte-Dell> References: <1308215296.27686.970.camel@Calixte-Dell> Message-ID: Hi Calixte, Le 16/06/2011 11:08, Calixte Denizet a ?crit : > > i) Could you attach the file master_help.xml which has been generated in > your help directory ? OK > > ii) Could you make a try in putting your xml files in a directory where > the full absolute path doesn't contain any space chars ? I' going to try, you think that problem can comes from lines like below in the master_help.xml? > > iii) the tag is not handled, you should use instead. Yes, i've seen this while testing xmltojar on bfloat.xml only, I need to modify the perl script that generate xml files to solve this. Philippe. -------------- next part -------------- A non-text attachment was scrubbed... Name: master_help.xml Type: text/xml Size: 17774 bytes Desc: not available URL: From calixte at contrib.scilab.org Thu Jun 16 11:58:30 2011 From: calixte at contrib.scilab.org (Calixte Denizet) Date: Thu, 16 Jun 2011 11:58:30 +0200 Subject: [scilab-Users] Re: xmltojar problems In-Reply-To: References: <1308215296.27686.970.camel@Calixte-Dell> Message-ID: <1308218310.27686.988.camel@Calixte-Dell> Le jeudi 16 juin 2011 ? 11:36 +0200, philippe a ?crit : > Hi Calixte, > > Le 16/06/2011 11:08, Calixte Denizet a ?crit : > > > > i) Could you attach the file master_help.xml which has been generated in > > your help directory ? > > OK > > > > > ii) Could you make a try in putting your xml files in a directory where > > the full absolute path doesn't contain any space chars ? > > I' going to try, you think that problem can comes from lines like below > in the master_help.xml? > > file:///C:/PROGRA~2/SCILAB~1.1/contrib/SYM/xml/en_US/%s_i_sym.xml"> Maybe the % char is not a good idea in an URL. Could you try to rename your files %foo.xml in percent_foo.xml ? (you could use the command: for i in %*.xml; do mv $i ${i//\%/percent_};done ) C > > > > > > iii) the tag is not handled, you should use instead. > > > Yes, i've seen this while testing xmltojar on bfloat.xml only, I need to > modify the perl script that generate xml files to solve this. > > Philippe. > From eddy.pdu at gmail.com Thu Jun 16 18:18:15 2011 From: eddy.pdu at gmail.com (Peng Du) Date: Thu, 16 Jun 2011 17:18:15 +0100 Subject: re-delimiting data Message-ID: Hi everyone, I collected some raw data which looks like: -112 -100 -95 -91 -114 -112 -95 -90 -112 -112 -113 -107 -100 -109 -111 -106 -70 -98 -95 -111 -114 -114 -113 -111 -113 -103 -112 -109 -111 -112 -114 -112 ... -64 -57 -57 -112 -110 -93 -84 -86 -105 -98 -107 -99 -94 -113 -113 -115 -64 -55 -88 -113 -82 -83 -85 -88 -100 -114 -113 -99 -91 -109 -113 -110 So there are 16 columns per line. I wrote a c++ program to do some calculation on the raw data and reproduce a file with similar format which looks like: -112 -100 -95 -91 -114 -112 -95 -90 -112 -112 -113 -107 -100 -109 -111 -106 -91 -99 -95 -101 -114 -113 -104 -100 -112 -108 -112 -108 -106 -110 -112 -109 -91 -97.3 -98.7 -105 -113 -113 -107 -96.7 -112 -109 -109 -102 -102 -111 -111 -109 Then I tried to read the file in Scilab using: [num_read, val(1), val(2), val(3), val(4), val(5), val(6), val(7), val(8),val(9), val(10), val(11), val(12), val(13), val(14), val(15), val(16)] = mfscanf(fid, "%d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d"); However the raw data work ok, but with the process data file Scilab always reports "invalid index error". Why this is happening? Thanks very much. Regards, Peng From vogt at centre-cired.fr Thu Jun 16 18:28:21 2011 From: vogt at centre-cired.fr (Adrien Vogt-Schilb) Date: Thu, 16 Jun 2011 18:28:21 +0200 Subject: [scilab-Users] re-delimiting data In-Reply-To: References: Message-ID: <4DFA2F25.1000209@centre-cired.fr> Hi as far as i know, you cannot use a syntaxe like [a(1) a(2)] = f(b,c,d,e) in scilab a workaround could be [a1 a2] = f(b,c,d,e) a = [a1 a2] in your case, i believe you could use something more direct, like : val = fscanfMat(fid ) BR, AVS On 16/06/2011 18:18, Peng Du wrote: > Hi everyone, > > I collected some raw data which looks like: > > -112 -100 -95 -91 -114 -112 -95 -90 -112 -112 -113 -107 -100 -109 -111 -106 > -70 -98 -95 -111 -114 -114 -113 -111 -113 -103 -112 -109 -111 -112 -114 -112 > ... > > -64 -57 -57 -112 -110 -93 -84 -86 -105 -98 -107 -99 -94 -113 -113 -115 > -64 -55 -88 -113 -82 -83 -85 -88 -100 -114 -113 -99 -91 -109 -113 -110 > > So there are 16 columns per line. > > I wrote a c++ program to do some calculation on the raw data and > reproduce a file with similar format which looks like: > > -112 -100 -95 -91 -114 -112 -95 -90 -112 -112 -113 -107 -100 -109 -111 -106 > -91 -99 -95 -101 -114 -113 -104 -100 -112 -108 -112 -108 -106 -110 -112 -109 > -91 -97.3 -98.7 -105 -113 -113 -107 -96.7 -112 -109 -109 -102 -102 > -111 -111 -109 > > Then I tried to read the file in Scilab using: > > [num_read, val(1), val(2), val(3), val(4), val(5), val(6), val(7), > val(8),val(9), val(10), val(11), val(12), val(13), val(14), val(15), > val(16)] = mfscanf(fid, "%d %d %d %d %d %d %d %d %d %d %d %d %d %d %d > %d"); > > However the raw data work ok, but with the process data file Scilab > always reports "invalid index error". Why this is happening? > > Thanks very much. > > Regards, -------------- next part -------------- An HTML attachment was scrubbed... URL: From eddy.pdu at gmail.com Thu Jun 16 18:58:26 2011 From: eddy.pdu at gmail.com (Peng Du) Date: Thu, 16 Jun 2011 17:58:26 +0100 Subject: [scilab-Users] re-delimiting data In-Reply-To: <4DFA2F25.1000209@centre-cired.fr> References: <4DFA2F25.1000209@centre-cired.fr> Message-ID: Thanks Adrien, The thing confuses me is that the method I used works fine with the un-processed raw data but fails with the processed file which has basically the same structure. And how can I loop through the file if I use the fscanfMat? Regards, Peng On 16 June 2011 17:28, Adrien Vogt-Schilb wrote: > Hi > > > as far as i know, you cannot use a syntaxe like > > [a(1) a(2)] = f(b,c,d,e) > > in scilab > > a workaround could be > > [a1 a2] = f(b,c,d,e) > a = [a1 a2] > > > in your case, i believe you could use something more direct, like : > > val = fscanfMat(fid ) > > BR, > AVS > > > On 16/06/2011 18:18, Peng Du wrote: > > Hi everyone, > > I collected some raw data which looks like: > > -112 -100 -95 -91 -114 -112 -95 -90 -112 -112 -113 -107 -100 -109 -111 -106 > -70 -98 -95 -111 -114 -114 -113 -111 -113 -103 -112 -109 -111 -112 -114 -112 > ... > > -64 -57 -57 -112 -110 -93 -84 -86 -105 -98 -107 -99 -94 -113 -113 -115 > -64 -55 -88 -113 -82 -83 -85 -88 -100 -114 -113 -99 -91 -109 -113 -110 > > So there are 16 columns per line. > > I wrote a c++ program to do some calculation on the raw data and > reproduce a file with similar format which looks like: > > -112 -100 -95 -91 -114 -112 -95 -90 -112 -112 -113 -107 -100 -109 -111 -106 > -91 -99 -95 -101 -114 -113 -104 -100 -112 -108 -112 -108 -106 -110 -112 -109 > -91 -97.3 -98.7 -105 -113 -113 -107 -96.7 -112 -109 -109 -102 -102 > -111 -111 -109 > > Then I tried to read the file in Scilab using: > > [num_read, val(1), val(2), val(3), val(4), val(5), val(6), val(7), > val(8),val(9), val(10), val(11), val(12), val(13), val(14), val(15), > val(16)] = mfscanf(fid, "%d %d %d %d %d %d %d %d %d %d %d %d %d %d %d > %d"); > > However the raw data work ok, but with the process data file Scilab > always reports "invalid index error". Why this is happening? > > Thanks very much. > > Regards, > From vogt at centre-cired.fr Thu Jun 16 19:06:58 2011 From: vogt at centre-cired.fr (Adrien Vogt-Schilb) Date: Thu, 16 Jun 2011 19:06:58 +0200 Subject: [scilab-Users] re-delimiting data In-Reply-To: References: <4DFA2F25.1000209@centre-cired.fr> Message-ID: <4DFA3832.3020403@centre-cired.fr> Hi Actually, i was wrong when I said that [a(1) a(2)] = f(b,c,d,e) is illegal syntax in scilab. In that case, the problem may come from the format of your processed data table. Do you know which separators (spaces? tabs?) are used in the raw and in the processed data table? If not, can you join the raw and processed tables? And, again, are you sure that it will not be preferable to read the whole matrix at once? try this: help read_csv On 16/06/2011 18:58, Peng Du wrote: > Thanks Adrien, > > The thing confuses me is that the method I used works fine with the > un-processed raw data but fails with the processed file which has > basically the same structure. > > And how can I loop through the file if I use the fscanfMat? > > Regards, > > Peng > > On 16 June 2011 17:28, Adrien Vogt-Schilb wrote: >> Hi >> >> >> as far as i know, you cannot use a syntaxe like >> >> [a(1) a(2)] = f(b,c,d,e) >> >> in scilab >> >> a workaround could be >> >> [a1 a2] = f(b,c,d,e) >> a = [a1 a2] >> >> >> in your case, i believe you could use something more direct, like : >> >> val = fscanfMat(fid ) >> >> BR, >> AVS >> >> >> On 16/06/2011 18:18, Peng Du wrote: >> >> Hi everyone, >> >> I collected some raw data which looks like: >> >> -112 -100 -95 -91 -114 -112 -95 -90 -112 -112 -113 -107 -100 -109 -111 -106 >> -70 -98 -95 -111 -114 -114 -113 -111 -113 -103 -112 -109 -111 -112 -114 -112 >> ... >> >> -64 -57 -57 -112 -110 -93 -84 -86 -105 -98 -107 -99 -94 -113 -113 -115 >> -64 -55 -88 -113 -82 -83 -85 -88 -100 -114 -113 -99 -91 -109 -113 -110 >> >> So there are 16 columns per line. >> >> I wrote a c++ program to do some calculation on the raw data and >> reproduce a file with similar format which looks like: >> >> -112 -100 -95 -91 -114 -112 -95 -90 -112 -112 -113 -107 -100 -109 -111 -106 >> -91 -99 -95 -101 -114 -113 -104 -100 -112 -108 -112 -108 -106 -110 -112 -109 >> -91 -97.3 -98.7 -105 -113 -113 -107 -96.7 -112 -109 -109 -102 -102 >> -111 -111 -109 >> >> Then I tried to read the file in Scilab using: >> >> [num_read, val(1), val(2), val(3), val(4), val(5), val(6), val(7), >> val(8),val(9), val(10), val(11), val(12), val(13), val(14), val(15), >> val(16)] = mfscanf(fid, "%d %d %d %d %d %d %d %d %d %d %d %d %d %d %d >> %d"); >> >> However the raw data work ok, but with the process data file Scilab >> always reports "invalid index error". Why this is happening? >> >> Thanks very much. >> >> Regards, >> -- *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 dominique.fougeron at free.fr Thu Jun 16 19:55:20 2011 From: dominique.fougeron at free.fr (Dominique FOUGERON) Date: Thu, 16 Jun 2011 19:55:20 +0200 Subject: Version Scilab pour windows 3.1 Message-ID: Bonsoir, J'ai un ordinateur qui tourne encore sur windows 3.11. Auriez vous par hasard une version scilab qui tourne sous cette version windows merci d'avance pour votre r?ponse. Cordialement Paul -------------- next part -------------- An HTML attachment was scrubbed... URL: From sylvestre.ledru at scilab.org Thu Jun 16 20:24:42 2011 From: sylvestre.ledru at scilab.org (Sylvestre Ledru) Date: Thu, 16 Jun 2011 20:24:42 +0200 Subject: [scilab-Users] Can't start Scilab in Ubuntu 10.04LTS In-Reply-To: <4DF9B367.7080001@upc.edu> References: <4DF8786C.9070900@upc.edu> <1308129624.23539.14.camel@korcula.inria.fr> <4DF88E32.7050501@upc.edu> <1308145098.25878.144.camel@losinj.inria.fr> <4DF9B367.7080001@upc.edu> Message-ID: <1308248682.6559.42.camel@losinj.inria.fr> Le jeudi 16 juin 2011 ? 09:40 +0200, Jaume Figueras i Jov? a ?crit : > Hi, > > On 06/15/2011 03:38 PM, Sylvestre Ledru wrote: > > What is that ? (the oracle java repository) > > Sorry I made a mistake. I meant the ubuntu-partner repo with java-sun > installed. No worries. > > What is the result of > > dpkg -l|grep openjdk > > rc openjdk-6-jre 6b20-1.9.7-0ubuntu1~10.04.1 > OpenJDK Java runtime, using Hotspot JIT > ii openjdk-6-jre-headless 6b20-1.9.7-0ubuntu1~10.04.1 > OpenJDK Java runtime, using Hotspot JIT (hea > ii openjdk-6-jre-lib 6b20-1.9.7-0ubuntu1~10.04.1 > OpenJDK Java runtime (architecture independe Well, the first two letters "rc" mean that the openjdk has been removed for some reasons (but configuration files are still available). sudo apt-get install openjdk-6-jre should reinstall the missing components (*). Sylvestre * or sudo apt-get install --reinstall openjdk-6-jre From manjusha.joshi at gmail.com Fri Jun 17 00:51:55 2011 From: manjusha.joshi at gmail.com (Manjusha Joshi) Date: Fri, 17 Jun 2011 04:21:55 +0530 Subject: SIVP module error while loading Message-ID: Hi, While adding SIVP module on laptop with OS Mandriva 2010 with Scilab version 5.3.2 I got following message. SIVP - Scilab Image and Video Processing Toolbox Load macros Load gateways atomsLoad: An error occurred while loading 'SIVP-0.5.3-3': link: The shared archive was not loaded: libschroedinger-1.0.so.0: cannot open shared object file: No such file or directory Is it related to dependency? Can any one point out which way one can go to solve this issue? Thanks in advanced! -- Manjusha S. Joshi http://fossme.bprim.org Lecturer in Computational Mathematics, BIM, Pune, India. www.bprim.org Mobile: 09822 319328 blog:http://manjushajoshi.wordpress.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From eddy.pdu at gmail.com Fri Jun 17 01:42:33 2011 From: eddy.pdu at gmail.com (Peng Du) Date: Fri, 17 Jun 2011 00:42:33 +0100 Subject: Graphic question Message-ID: Hello all, Is there anyway I can represent the value with level of darkness? I mean if I have time as X-axis and the items I monitor on the Y-axis, can I have a horizontal stripe and indicate the high/low of the value at specific time with how dark the colour of the stripe is at the corresponding position? Something looks like this one: http://spie.org/Images/Graphics/Newsroom/Imported/0951/0951_fig3.jpg , but it does not have to be colourful. Thanks a lot. Regards, Peng From rouxph.22 at gmail.com Fri Jun 17 10:26:06 2011 From: rouxph.22 at gmail.com (philippe) Date: Fri, 17 Jun 2011 10:26:06 +0200 Subject: Graphic question In-Reply-To: References: Message-ID: Hi, Le 17/06/2011 01:42, Peng Du a ?crit : > > Is there anyway I can represent the value with level of darkness? change the colormap to a grayscale one : Sgrayplot()//create the figure f=gcf();//figure handle f.color_map=graycolormap(32);// change colormap to grayscale with 32 levels graycolormap(32)// to see what is a colormap ... Philippe. From rouxph.22 at gmail.com Fri Jun 17 11:32:42 2011 From: rouxph.22 at gmail.com (philippe) Date: Fri, 17 Jun 2011 11:32:42 +0200 Subject: xmltojar problems In-Reply-To: <1308218310.27686.988.camel@Calixte-Dell> References: <1308215296.27686.970.camel@Calixte-Dell> <1308218310.27686.988.camel@Calixte-Dell> Message-ID: Hi Calixte, Le 16/06/2011 11:58, Calixte Denizet a ?crit : > > Maybe the % char is not a good idea in an URL. Could you try to rename > your files %foo.xml in percent_foo.xml ? after new tests I can say that % char in file names and space chars in dir names are harmless, but they are steel bad tag's in my xml files generated by the perl script. I'll try to improve it and ask you if encounter other problems ... Philippe. From david.cheze at cea.fr Fri Jun 17 12:25:10 2011 From: david.cheze at cea.fr (=?UTF-8?Q?David_Ch=C3=A8ze?=) Date: Fri, 17 Jun 2011 03:25:10 -0700 (PDT) Subject: scinotes regular expression search In-Reply-To: References: Message-ID: <1308306310555-3075666.post@n3.nabble.com> Hi, 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 ? 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 computerprocesscontrol at gmail.com Sat Jun 18 11:19:45 2011 From: computerprocesscontrol at gmail.com (Process Control) Date: Sat, 18 Jun 2011 05:19:45 -0400 Subject: What are your thoughts on R/Scilab? Message-ID: Hi, I would like to know your thoughts on scilab and R if you have used both. Just your thoughts and insights. I am going to start my PhD program in operations research very soon. Unlike my masters studies, I want this time to completely rely on open source tools under linux. I like the concepts of scilab and R, along with basic C/C++ for speeding loops. I do have little experience with both packages, but have never used them for serious work such as a PhD thesis. regards -------------- next part -------------- An HTML attachment was scrubbed... URL: From computerprocesscontrol at gmail.com Sat Jun 18 11:23:58 2011 From: computerprocesscontrol at gmail.com (Process Control) Date: Sat, 18 Jun 2011 05:23:58 -0400 Subject: Scilab 6 syntax? Message-ID: Hi, What is the scilab 6 syntax going to be like? What I understand is that the scilab 6 is going to bring a significant improvement in performance. How is it going to compare to MATLAB and R? regards -------------- next part -------------- An HTML attachment was scrubbed... URL: From samuel.enibe at unn.edu.ng Sat Jun 18 13:21:34 2011 From: samuel.enibe at unn.edu.ng (samuel.enibe at unn.edu.ng) Date: Sat, 18 Jun 2011 11:21:34 +0000 Subject: [scilab-Users] What are your thoughts on R/Scilab? Message-ID: <4dfc8a8f.5ce7d80a.3762.ffffbf7b@mx.google.com> I have found SCILAB to result in a much faster completion of analysis than any of BASIC or C++. I will encourage you to use SCILAB. I have not used R. Thanks. Enibe Sent from my Nokia phone -----Original Message----- From: Process Control Sent: 18/06/2011 10:19:45 am Subject: [scilab-Users] What are your thoughts on R/Scilab? Hi, I would like to know your thoughts on scilab and R if you have used both. Just your thoughts and insights. I am going to start my PhD program in operations research very soon. Unlike my masters studies, I want this time to completely rely on open source tools under linux. I like the concepts of scilab and R, along with basic C/C++ for speeding loops. I do have little experience with both packages, but have never used them for serious work such as a PhD thesis. regards From computerprocesscontrol at gmail.com Sat Jun 18 13:46:00 2011 From: computerprocesscontrol at gmail.com (Process Control) Date: Sat, 18 Jun 2011 07:46:00 -0400 Subject: [scilab-Users] What are your thoughts on R/Scilab? In-Reply-To: <4dfc8a8f.5ce7d80a.3762.ffffbf7b@mx.google.com> References: <4dfc8a8f.5ce7d80a.3762.ffffbf7b@mx.google.com> Message-ID: you are right. scilab and the like are high level languages suitable for fast prototyping and development. however, you may still need to use low level language such as C++ to speed up loops. On Sat, Jun 18, 2011 at 7:21 AM, samuel.enibe at unn.edu.ng < samuel.enibe at unn.edu.ng> wrote: > I have found SCILAB to result in a much faster completion of analysis than > any of BASIC or C++. > I will encourage you to use SCILAB. > I have not used R. > Thanks. > Enibe > > Sent from my Nokia phone > -----Original Message----- > From: Process Control > Sent: 18/06/2011 10:19:45 am > Subject: [scilab-Users] What are your thoughts on R/Scilab? > > Hi, > > I would like to know your thoughts on scilab and R if you have used both. > > Just your thoughts and insights. > > I am going to start my PhD program in operations research very soon. Unlike > my masters studies, I want this time to completely rely on open source > tools > under linux. I like the concepts of scilab and R, along with basic C/C++ > for > speeding loops. I do have little experience with both packages, but have > never used them for serious work such as a PhD thesis. > > regards > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From cwarner.cw711 at gmail.com Sat Jun 18 14:13:26 2011 From: cwarner.cw711 at gmail.com (Charles Warner) Date: Sat, 18 Jun 2011 07:13:26 -0500 Subject: [scilab-Users] What are your thoughts on R/Scilab? In-Reply-To: References: <4dfc8a8f.5ce7d80a.3762.ffffbf7b@mx.google.com> Message-ID: I use Scilab, Octave, R, Sage, and c/Fortran/Forth for a variety of different applications, generally involving data acquisition & analysis. I probably use less than 10% of the capabilities of any of these Open Source packages, but, while each has its strengths and capabilities, none of them can be considered the ultimate solution for every problem you will encounter. The tool needs to fit the task at hand. A screwdriver makes a very poor hammer, and, while you can drive a screw with a hammer, there are far more efficient ways of accomplishing the same task. There is a very good discussion of the capabilities of various Open Source mathematical software packages available at ResearchGate(registration required- but well worth the effort- registration is free). Charles Warner On Sat, Jun 18, 2011 at 6:46 AM, Process Control < computerprocesscontrol at gmail.com> wrote: > you are right. scilab and the like are high level languages suitable for > fast prototyping and development. however, you may still need to use low > level language such as C++ to speed up loops. > > > > > On Sat, Jun 18, 2011 at 7:21 AM, samuel.enibe at unn.edu.ng < > samuel.enibe at unn.edu.ng> wrote: > >> I have found SCILAB to result in a much faster completion of analysis than >> any of BASIC or C++. >> I will encourage you to use SCILAB. >> I have not used R. >> Thanks. >> Enibe >> >> Sent from my Nokia phone >> -----Original Message----- >> From: Process Control >> Sent: 18/06/2011 10:19:45 am >> Subject: [scilab-Users] What are your thoughts on R/Scilab? >> >> Hi, >> >> I would like to know your thoughts on scilab and R if you have used both. >> >> Just your thoughts and insights. >> >> I am going to start my PhD program in operations research very soon. >> Unlike >> my masters studies, I want this time to completely rely on open source >> tools >> under linux. I like the concepts of scilab and R, along with basic C/C++ >> for >> speeding loops. I do have little experience with both packages, but have >> never used them for serious work such as a PhD thesis. >> >> regards >> >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From sylvestre.ledru at scilab.org Sat Jun 18 15:19:07 2011 From: sylvestre.ledru at scilab.org (Sylvestre Ledru) Date: Sat, 18 Jun 2011 15:19:07 +0200 Subject: [scilab-Users] Scilab 6 syntax? In-Reply-To: References: Message-ID: <1308403147.2815.23.camel@losinj.inria.fr> Hello, Le samedi 18 juin 2011 ? 05:23 -0400, Process Control a ?crit : > Hi, > > What is the scilab 6 syntax going to be like? > > What I understand is that the scilab 6 is going to bring a significant > improvement in performance. How is it going to compare to MATLAB and > R? We are trying to introduce minimal changes to avoid incompatibilities. We are improving the Scilab language by removing some bad corner cases and also by adding stuff like cell and some other nice features. Also, some types, which are currently based on other through macros, are going to be native (and therefor much more faster). This increases strongly the performances. All changes will be fully documented with the first testing release of Scilab 6. Sylvestre From computerprocesscontrol at gmail.com Sat Jun 18 20:49:07 2011 From: computerprocesscontrol at gmail.com (Process Control) Date: Sat, 18 Jun 2011 14:49:07 -0400 Subject: [scilab-Users] What are your thoughts on R/Scilab? In-Reply-To: References: <4dfc8a8f.5ce7d80a.3762.ffffbf7b@mx.google.com> Message-ID: thank Charles. this is one way to maximize benefit from open source. scilab and R provide similar libraries and language features. R originally started as a statistical environment but has lately moved towards becoming a general computational tool like scilab and matlab. probably, the most important part of my code is speeding up loops with C/C++ since I will be doing extensive monte carlo simulations. so, either of scilab an R will just do fine. On Sat, Jun 18, 2011 at 8:13 AM, Charles Warner wrote: > I use Scilab, Octave, R, Sage, and c/Fortran/Forth for a variety of > different applications, generally involving data acquisition & analysis. I > probably use less than 10% of the capabilities of any of these Open Source > packages, but, while each has its strengths and capabilities, none of them > can be considered the ultimate solution for every problem you will > encounter. The tool needs to fit the task at hand. A screwdriver makes a > very poor hammer, and, while you can drive a screw with a hammer, there are > far more efficient ways of accomplishing the same task. > There is a very good discussion of the capabilities of various Open Source > mathematical software packages available at ResearchGate(registration required- but well worth the effort- registration is free). > > Charles Warner > > > On Sat, Jun 18, 2011 at 6:46 AM, Process Control < > computerprocesscontrol at gmail.com> wrote: > >> you are right. scilab and the like are high level languages suitable for >> fast prototyping and development. however, you may still need to use low >> level language such as C++ to speed up loops. >> >> >> >> >> On Sat, Jun 18, 2011 at 7:21 AM, samuel.enibe at unn.edu.ng < >> samuel.enibe at unn.edu.ng> wrote: >> >>> I have found SCILAB to result in a much faster completion of analysis >>> than any of BASIC or C++. >>> I will encourage you to use SCILAB. >>> I have not used R. >>> Thanks. >>> Enibe >>> >>> Sent from my Nokia phone >>> -----Original Message----- >>> From: Process Control >>> Sent: 18/06/2011 10:19:45 am >>> Subject: [scilab-Users] What are your thoughts on R/Scilab? >>> >>> Hi, >>> >>> I would like to know your thoughts on scilab and R if you have used both. >>> >>> Just your thoughts and insights. >>> >>> I am going to start my PhD program in operations research very soon. >>> Unlike >>> my masters studies, I want this time to completely rely on open source >>> tools >>> under linux. I like the concepts of scilab and R, along with basic C/C++ >>> for >>> speeding loops. I do have little experience with both packages, but have >>> never used them for serious work such as a PhD thesis. >>> >>> regards >>> >>> >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From computerprocesscontrol at gmail.com Sun Jun 19 00:22:53 2011 From: computerprocesscontrol at gmail.com (Process Control) Date: Sat, 18 Jun 2011 18:22:53 -0400 Subject: [scilab-Users] Scilab 6 syntax? In-Reply-To: <1308403147.2815.23.camel@losinj.inria.fr> References: <1308403147.2815.23.camel@losinj.inria.fr> Message-ID: thanks Sylvestre So, when is the expected releaste of scilab 6? regards On Sat, Jun 18, 2011 at 9:19 AM, Sylvestre Ledru wrote: > Hello, > Le samedi 18 juin 2011 ? 05:23 -0400, Process Control a ?crit : > > Hi, > > > > What is the scilab 6 syntax going to be like? > > > > What I understand is that the scilab 6 is going to bring a significant > > improvement in performance. How is it going to compare to MATLAB and > > R? > We are trying to introduce minimal changes to avoid incompatibilities. > We are improving the Scilab language by removing some bad corner cases > and also by adding stuff like cell and some other nice features. > > Also, some types, which are currently based on other through macros, are > going to be native (and therefor much more faster). This increases > strongly the performances. > > All changes will be fully documented with the first testing release of > Scilab 6. > > Sylvestre > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ychattah at iai.co.il Sun Jun 19 10:35:24 2011 From: ychattah at iai.co.il (computidoo) Date: Sun, 19 Jun 2011 01:35:24 -0700 (PDT) Subject: repmat Message-ID: <1308472524402-3082144.post@n3.nabble.com> I looking for a function that is like repmat i have a=[1 2]; and i need [1 2 1 2 1 2 1 2 1 2] -- View this message in context: http://mailinglists.scilab.org/repmat-tp3082144p3082144.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From sylvestre.ledru at scilab.org Sun Jun 19 10:37:52 2011 From: sylvestre.ledru at scilab.org (Sylvestre Ledru) Date: Sun, 19 Jun 2011 10:37:52 +0200 Subject: [scilab-Users] repmat In-Reply-To: <1308472524402-3082144.post@n3.nabble.com> References: <1308472524402-3082144.post@n3.nabble.com> Message-ID: <1308472672.2914.1.camel@losinj.inria.fr> Le dimanche 19 juin 2011 ? 01:35 -0700, computidoo a ?crit : > I looking for a function that is like repmat > > i have > a=[1 2]; > > and i need [1 2 1 2 1 2 1 2 1 2] Since Scilab 5.3.1, repmat is included into Scilab. See: -->a=[1 2]; -->repmat(a, 1, 4) ans = 1. 2. 1. 2. 1. 2. 1. 2. Sylvestre From sylvestre.ledru at scilab.org Sun Jun 19 10:38:41 2011 From: sylvestre.ledru at scilab.org (Sylvestre Ledru) Date: Sun, 19 Jun 2011 10:38:41 +0200 Subject: [scilab-Users] Scilab 6 syntax? In-Reply-To: References: <1308403147.2815.23.camel@losinj.inria.fr> Message-ID: <1308472721.2914.2.camel@losinj.inria.fr> Hello, Hopefully, we will be able to release a first (pre?)alpha version of Scilab 6 in the next few months. Sylvestre Le samedi 18 juin 2011 ? 18:22 -0400, Process Control a ?crit : > thanks Sylvestre > > So, when is the expected releaste of scilab 6? > > regards > > > On Sat, Jun 18, 2011 at 9:19 AM, Sylvestre Ledru > wrote: > Hello, > Le samedi 18 juin 2011 ? 05:23 -0400, Process Control a > ?crit : > > > Hi, > > > > What is the scilab 6 syntax going to be like? > > > > What I understand is that the scilab 6 is going to bring a > significant > > improvement in performance. How is it going to compare to > MATLAB and > > R? > > We are trying to introduce minimal changes to avoid > incompatibilities. > We are improving the Scilab language by removing some bad > corner cases > and also by adding stuff like cell and some other nice > features. > > Also, some types, which are currently based on other through > macros, are > going to be native (and therefor much more faster). This > increases > strongly the performances. > > All changes will be fully documented with the first testing > release of > Scilab 6. > > Sylvestre > > > > > From fvogelnew1 at free.fr Sun Jun 19 10:39:14 2011 From: fvogelnew1 at free.fr (=?ISO-8859-1?Q?Fran=E7ois_Vogel?=) Date: Sun, 19 Jun 2011 10:39:14 +0200 Subject: [scilab-Users] repmat In-Reply-To: <1308472524402-3082144.post@n3.nabble.com> References: <1308472524402-3082144.post@n3.nabble.com> Message-ID: <4DFDB5B2.4010500@free.fr> http://www.scilab.org/product/dic-mat-sci/repmat.html F. computidoo said on 19/06/2011 10:35: > I looking for a function that is like repmat > > i have > a=[1 2]; > > and i need [1 2 1 2 1 2 1 2 1 2] > > -- > View this message in context: http://mailinglists.scilab.org/repmat-tp3082144p3082144.html > Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. > From ychattah at iai.co.il Sun Jun 19 13:02:41 2011 From: ychattah at iai.co.il (computidoo) Date: Sun, 19 Jun 2011 04:02:41 -0700 (PDT) Subject: repmat In-Reply-To: <4DFDB5B2.4010500@free.fr> References: <1308472524402-3082144.post@n3.nabble.com> <4DFDB5B2.4010500@free.fr> Message-ID: <398A6BB116520048A0644B6F8EA17E45015BF030@EXS2.iai.co.il> thanks ________________________________ From: Fran?ois Vogel [via Scilab / Xcos - Mailing Lists Archives] [mailto:ml-node+3082154-1952072896-379482 at n3.nabble.com] Sent: Sunday, June 19, 2011 10:40 AM To: Yehonatan Chattah Subject: Re: repmat http://www.scilab.org/product/dic-mat-sci/repmat.html F. computidoo said on 19/06/2011 10:35: > I looking for a function that is like repmat > > i have > a=[1 2]; > > and i need [1 2 1 2 1 2 1 2 1 2] > > -- > View this message in context: http://mailinglists.scilab.org/repmat-tp3082144p3082144.html > Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. > ________________________________ If you reply to this email, your message will be added to the discussion below: http://mailinglists.scilab.org/repmat-tp3082144p3082154.html To unsubscribe from repmat, click here . The information contained in this communication is proprietary to Israel Aerospace Industries Ltd. and/or third parties, may contain confidential or privileged information, and is intended only for the use of the intended addressee thereof. If you are not the intended addressee, please be aware that any use, disclosure, distribution and/or copying of this communication is strictly prohibited. If you receive this communication in error, please notify the sender immediately and delete it from your computer. Thank you. -- View this message in context: http://mailinglists.scilab.org/repmat-tp3082144p3082392.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From computerprocesscontrol at gmail.com Sun Jun 19 18:34:32 2011 From: computerprocesscontrol at gmail.com (Process Control) Date: Sun, 19 Jun 2011 12:34:32 -0400 Subject: [scilab-Users] Scilab 6 syntax? In-Reply-To: <1308472721.2914.2.camel@losinj.inria.fr> References: <1308403147.2815.23.camel@losinj.inria.fr> <1308472721.2914.2.camel@losinj.inria.fr> Message-ID: great. I am very interested in creating a power flow analysis toolbox for scilab. Do you think I should wait for scilab 6 to come out? regards On Sun, Jun 19, 2011 at 4:38 AM, Sylvestre Ledru wrote: > Hello, > > Hopefully, we will be able to release a first (pre?)alpha version of > Scilab 6 in the next few months. > > Sylvestre > > > Le samedi 18 juin 2011 ? 18:22 -0400, Process Control a ?crit : > > thanks Sylvestre > > > > So, when is the expected releaste of scilab 6? > > > > regards > > > > > > On Sat, Jun 18, 2011 at 9:19 AM, Sylvestre Ledru > > wrote: > > Hello, > > Le samedi 18 juin 2011 ? 05:23 -0400, Process Control a > > ?crit : > > > > > Hi, > > > > > > What is the scilab 6 syntax going to be like? > > > > > > What I understand is that the scilab 6 is going to bring a > > significant > > > improvement in performance. How is it going to compare to > > MATLAB and > > > R? > > > > We are trying to introduce minimal changes to avoid > > incompatibilities. > > We are improving the Scilab language by removing some bad > > corner cases > > and also by adding stuff like cell and some other nice > > features. > > > > Also, some types, which are currently based on other through > > macros, are > > going to be native (and therefor much more faster). This > > increases > > strongly the performances. > > > > All changes will be fully documented with the first testing > > release of > > Scilab 6. > > > > Sylvestre > > > > > > > > > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From computerprocesscontrol at gmail.com Sun Jun 19 18:53:43 2011 From: computerprocesscontrol at gmail.com (Process Control) Date: Sun, 19 Jun 2011 12:53:43 -0400 Subject: memory management Message-ID: Hi, I ran the follwing commands: stacksize("max") tic();rand(10000,10000);toc() It works fine and the stacksize after running these commands is: 2.684D+08 8179 But in the process monitor on gnome, scilab-bin is occupying 1.6 GiB. So, the only way to free this RAM is to restart scilab. Please, could you explain what is going on and how to free the memory without restarting scilab. thank you -------------- next part -------------- An HTML attachment was scrubbed... URL: From BlanchardJ at ieee.org Sun Jun 19 19:08:26 2011 From: BlanchardJ at ieee.org (Jonathan Blanchard) Date: Sun, 19 Jun 2011 14:08:26 -0300 Subject: [scilab-Users] memory management In-Reply-To: References: Message-ID: On Sun, Jun 19, 2011 at 1:53 PM, Process Control wrote: > Hi, > > I ran the follwing commands: > > stacksize("max") > tic();rand(10000,10000);toc() > > It works fine and the stacksize after running these commands is: > > 2.684D+08??? 8179 > > But in the process monitor on gnome, scilab-bin is occupying 1.6 GiB. So, > the only way to free this RAM is to restart scilab. Please, could you > explain what is going on and how to free the memory without restarting > scilab. > > thank you > Well, by calling stacksize("max") Scilab will try to increase it's stack to the maximum possible which it did in this case. The memory usage displayed by gnome monitor is the process virtual memory usage which will never shrink even if the memory is freed. The amount of physical memory used is the resident set size but I'm not sure how to check that on a Linux system. To free physical memory after it's not needed you can reduce the Scilab stack with the same command, however it cannot be reduced smaller than what is currently necessary to store all the active variables in Scilab. The clear() command can be used to remove unwanted variables and then the stack size can be reduced. Jonathan Blanchard From computerprocesscontrol at gmail.com Sun Jun 19 19:59:00 2011 From: computerprocesscontrol at gmail.com (Process Control) Date: Sun, 19 Jun 2011 13:59:00 -0400 Subject: [scilab-Users] memory management In-Reply-To: References: Message-ID: thanks i used stacksize("min") and it freed the memory On Sun, Jun 19, 2011 at 1:08 PM, Jonathan Blanchard wrote: > On Sun, Jun 19, 2011 at 1:53 PM, Process Control > wrote: > > Hi, > > > > I ran the follwing commands: > > > > stacksize("max") > > tic();rand(10000,10000);toc() > > > > It works fine and the stacksize after running these commands is: > > > > 2.684D+08 8179 > > > > But in the process monitor on gnome, scilab-bin is occupying 1.6 GiB. So, > > the only way to free this RAM is to restart scilab. Please, could you > > explain what is going on and how to free the memory without restarting > > scilab. > > > > thank you > > > > Well, by calling stacksize("max") Scilab will try to increase it's > stack to the maximum possible which it did in this case. The memory > usage displayed by gnome monitor is the process virtual memory usage > which will never shrink even if the memory is freed. The amount of > physical memory used is the resident set size but I'm not sure how to > check that on a Linux system. To free physical memory after it's not > needed you can reduce the Scilab stack with the same command, however > it cannot be reduced smaller than what is currently necessary to store > all the active variables in Scilab. The clear() command can be used to > remove unwanted variables and then the stack size can be reduced. > > Jonathan Blanchard > -------------- next part -------------- An HTML attachment was scrubbed... URL: From fvogelnew1 at free.fr Sun Jun 19 23:40:02 2011 From: fvogelnew1 at free.fr (=?ISO-8859-1?Q?Fran=E7ois_Vogel?=) Date: Sun, 19 Jun 2011 23:40:02 +0200 Subject: [ANN]: Scipad-8.65 Message-ID: <4DFE6CB2.1090101@free.fr> ANNOUNCE: Scipad version 8.65 ============================= A new version of the Scipad text editor for Scilab and Scicoslab is available. CHANGES SINCE PREVIOUS VERSION ============================== NEW: * Searching for Scipad updates: - no longer is a blocking call - supports a proxy, with autodetection (or user forced name and port) and optional authentication * Supported Scipad version numbers are now %d.%d or %d.%d-%s * The directory entry in the find in files dialog now supports SCI and SCIHOME shortcuts (and ~ as well, this has always been the case) FIXED BUGS: * Fixed ticket #12: it is again possible to exec buffers containing pause statements * Happened with Tcl/Tk 8.6b1: the left and right arrow keys did no longer move the insertion cursor * The modified line tag was not shown when uncommenting a line that contained only // * Comment/uncomment and indent/unindent did place the insert cursor at the end of the selected text, which was misleading when the width of the textarea is not large enough to display the entire line since the indentation spaces or // chars could then not be seen * Bulletproofed previous session restoring process against some concurrent user actions (close tiles or files, hide, new, open, exit) that could trigger Tcl errors * Searching in hidden files could fail if there was more than one hidden file per directory * Tooltips on pane titles now show up also if the full filepath is truncated by the width of the Scipad window PLUS: * Other minor changes (see changelog.txt for details) WHAT IS SCIPAD ? ================ Scipad is a powerful editor and graphical debugger for programs written in Scilab language. It is a mature and highly configurable programmer's editor, including features like syntax colorization, regexp search/replace, parentheses matching, logical/physical line numbering, peer windows, line and block text editing, and much more. Scipad can be used along with Scicoslab or Scilab, but even as a standalone text editor. Used as internal Sci(cos)lab editor, it interacts tightly with the interpreter, allowing - Scilab code execution control - conditional breakpointing - variable retrieval and tooltip display - Scilab help lookup - access to source code of Scilab library function - control of Scilab facilities for Matlab code and creation of help documents - and much more Scipad also includes basic Modelica and XML syntax colorization; it is currently localized in 13 languages and further localizations can easily be added. Scipad is entirely written in Tcl/Tk and Scilab language. It has been tested and developed under various versions of Windows and Linux. WHERE CAN SCIPAD BE FOUND? ========================== Project page @ SourceForge.net: http://sourceforge.net/p/scipad/ Direct download: - for Scilab: http://sourceforge.net/projects/scipad/files/scipad-8.65/scipad-8.65-Scilab5.zip/download - for Scicoslab: http://sourceforge.net/projects/scipad/files/scipad-8.65/scipad-8.65-Scicoslab.zip/download Installation instructions: http://sourceforge.net/p/scipad/wiki/Installation/ Details regarding the tested platforms: http://sourceforge.net/p/scipad/wiki/Tested%20on/ LICENSE ======= Scipad is a free software distributed under the terms of the GPL (V2) license. From cwarner.cw711 at gmail.com Mon Jun 20 01:40:14 2011 From: cwarner.cw711 at gmail.com (Charles Warner) Date: Sun, 19 Jun 2011 18:40:14 -0500 Subject: [scilab-Users] [ANN]: Scipad-8.65 In-Reply-To: <4DFE6CB2.1090101@free.fr> References: <4DFE6CB2.1090101@free.fr> Message-ID: Using Ubuntu 10.04 64 bit and Scilab 5.2, yields the following error: "atomsExtract: The extraction of the archive '~/Downloads/scipad-8.65-Scilab5.zip' has failed. ! --error 10000 at line 51 of function atomsError called by: at line 82 of function atomsExtract called by: at line 149 of function atomsInstall called by: scipver+"-Sciab5.zip"). Playing around with the name of the folder, I get a different error that suggests atomsExtract (or atomsInstall) is prepending the file name/path with a "\", which is obviously going to drive my system crazy. What is wrong? What is error 10000? Charlie Warner On Sun, Jun 19, 2011 at 4:40 PM, Fran?ois Vogel wrote: > ANNOUNCE: Scipad version 8.65 > ============================= > > A new version of the Scipad text editor for Scilab and Scicoslab is > available. > > > CHANGES SINCE PREVIOUS VERSION > ============================== > > NEW: > > * Searching for Scipad updates: > - no longer is a blocking call > - supports a proxy, with autodetection (or user forced name and > port) and optional authentication > > * Supported Scipad version numbers are now %d.%d or %d.%d-%s > > * The directory entry in the find in files dialog now supports SCI > and SCIHOME shortcuts (and ~ as well, this has always been the > case) > > > FIXED BUGS: > > * Fixed ticket #12: it is again possible to exec buffers containing > pause statements > > * Happened with Tcl/Tk 8.6b1: the left and right arrow keys did no > longer move the insertion cursor > > * The modified line tag was not shown when uncommenting a line that > contained only // > > * Comment/uncomment and indent/unindent did place the insert cursor > at the end of the selected text, which was misleading when the > width of the textarea is not large enough to display the entire > line since the indentation spaces or // chars could then not be > seen > > * Bulletproofed previous session restoring process against some > concurrent user actions (close tiles or files, hide, new, open, > exit) that could trigger Tcl errors > > * Searching in hidden files could fail if there was more than one > hidden file per directory > > * Tooltips on pane titles now show up also if the full filepath is > truncated by the width of the Scipad window > > > PLUS: > > * Other minor changes (see changelog.txt for details) > > > WHAT IS SCIPAD ? > ================ > > Scipad is a powerful editor and graphical debugger for programs written in > Scilab language. It is a mature and highly configurable programmer's editor, > including features like syntax colorization, regexp search/replace, > parentheses matching, logical/physical line numbering, peer windows, line > and block text editing, and much more. Scipad can be used along with > Scicoslab or Scilab, but even as a standalone text editor. Used as internal > Sci(cos)lab editor, it interacts tightly with the interpreter, allowing > > - Scilab code execution control > - conditional breakpointing > - variable retrieval and tooltip display > - Scilab help lookup > - access to source code of Scilab library function > - control of Scilab facilities for Matlab code and creation of > help documents > - and much more > > Scipad also includes basic Modelica and XML syntax colorization; it is > currently localized in 13 languages and further localizations can easily be > added. Scipad is entirely written in Tcl/Tk and Scilab language. It has been > tested and developed under various versions of Windows and Linux. > > > WHERE CAN SCIPAD BE FOUND? > ========================== > > Project page @ SourceForge.net: http://sourceforge.net/p/**scipad/ > > Direct download: > - for Scilab: http://sourceforge.net/**projects/scipad/files/scipad-** > 8.65/scipad-8.65-Scilab5.zip/**download > - for Scicoslab: http://sourceforge.net/**projects/scipad/files/scipad-** > 8.65/scipad-8.65-Scicoslab.**zip/download > > Installation instructions: http://sourceforge.net/p/** > scipad/wiki/Installation/ > > Details regarding the tested platforms: http://sourceforge.net/p/** > scipad/wiki/Tested%20on/ > > > LICENSE > ======= > > Scipad is a free software distributed under the terms of the GPL (V2) > license. > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From gus.is.here at gmail.com Mon Jun 20 04:43:03 2011 From: gus.is.here at gmail.com (Gus Ishere) Date: Sun, 19 Jun 2011 22:43:03 -0400 Subject: modulo function in xcos Message-ID: I'm a first-time Scilab user and would like to simulate a model in xcos (or Scicos) I am simulating a Numerically Controlled Oscillator and need to perform modular arithmetic (modulo 2^W, W is some parameter to the model). I am trying to use the Xcos "Mathematical Expression" block, but it does not recognize the function "modulo". In the Scilab console, though, "modulo" provides the desired functionality. I expect that since "modulo" and "sin" appear in the same namespace, that I would be able to use them identically in the Xcos block, but "sin" works and "modulo" does not. Thanks, Gustavo From gadepall at gmail.com Mon Jun 20 07:41:20 2011 From: gadepall at gmail.com (G V V Sharma) Date: Mon, 20 Jun 2011 11:11:20 +0530 Subject: semilogy plotlib issue In-Reply-To: References: Message-ID: Hi, I'm unable to run the following code on my Ubuntu 11.04, Scilab 5.3. Plotlib has been installed. I did perform an upgrade from 10.10 after installing scilab. w=logspace(-2,2,200); s=%i*w; g=1../(s.^2+0.01*s+1); _semilogy(w,abs(g)); regards, Vishwanath. On 20-Jun-2011, at 8:13 AM, Gus Ishere wrote: > I'm a first-time Scilab user and would like to simulate a model in > xcos (or Scicos) > > I am simulating a Numerically Controlled Oscillator and need to > perform modular arithmetic (modulo 2^W, W is some parameter to the > model). I am trying to use the Xcos "Mathematical Expression" block, > but it does not recognize the function "modulo". In the Scilab > console, though, "modulo" provides the desired functionality. I expect > that since "modulo" and "sin" appear in the same namespace, that I > would be able to use them identically in the Xcos block, but "sin" > works and "modulo" does not. > > Thanks, > Gustavo From fvogelnew1 at free.fr Mon Jun 20 07:57:23 2011 From: fvogelnew1 at free.fr (=?ISO-8859-1?Q?Fran=E7ois_Vogel?=) Date: Mon, 20 Jun 2011 07:57:23 +0200 Subject: [scilab-Users] [ANN]: Scipad-8.65 In-Reply-To: References: <4DFE6CB2.1090101@free.fr> Message-ID: <4DFEE143.9060503@free.fr> Charles Warner said on 20/06/2011 01:40: > Using Ubuntu 10.04 64 bit and Scilab 5.2, yields the following error: > > "atomsExtract: The extraction of the archive > '~/Downloads/scipad-8.65-Scilab5.zip' has failed. > ! --error 10000 > > at line 51 of function atomsError called by: > at line 82 of function atomsExtract called by: > at line 149 of function atomsInstall called by: > scipver+"-Sciab5.zip"). ---------------^ missing an l here (?!?) > Playing around with the name of the folder, I get a different error > that suggests atomsExtract (or atomsInstall) is prepending the file > name/path with a "\", which is obviously going to drive my system crazy. > > What is wrong? What is error 10000? I can reproduce. Apparently atoms does not understand the ~ shortcut. Expanding it manually, this works for me: scipver = "8.65"; atomsInstall("/home/USERNAME/Downloads"+"/scipad-"+scipver+"-Scilab5.zip"); F. From stephane.mottelet at utc.fr Mon Jun 20 08:48:56 2011 From: stephane.mottelet at utc.fr (=?ISO-8859-1?Q?St=E9phane_Mottelet?=) Date: Mon, 20 Jun 2011 08:48:56 +0200 Subject: [scilab-Users] semilogy plotlib issue In-Reply-To: References: Message-ID: <4DFEED58.7080200@utc.fr> Le 20/06/2011 07:41, G V V Sharma a ?crit : > Hi, > I'm unable to run the following code on my Ubuntu 11.04, Scilab 5.3. Plotlib has been installed. I did perform an upgrade from 10.10 after installing scilab. > > w=logspace(-2,2,200); > s=%i*w; > g=1../(s.^2+0.01*s+1); > _semilogy(w,abs(g)); > > > > regards, > Vishwanath. > > On 20-Jun-2011, at 8:13 AM, Gus Ishere wrote: > >> I'm a first-time Scilab user and would like to simulate a model in >> xcos (or Scicos) >> >> I am simulating a Numerically Controlled Oscillator and need to >> perform modular arithmetic (modulo 2^W, W is some parameter to the >> model). I am trying to use the Xcos "Mathematical Expression" block, >> but it does not recognize the function "modulo". In the Scilab >> console, though, "modulo" provides the desired functionality. I expect >> that since "modulo" and "sin" appear in the same namespace, that I >> would be able to use them identically in the Xcos block, but "sin" >> works and "modulo" does not. >> >> Thanks, >> Gustavo Hello, I don't notice any problem with this code with plotlib 0.42 and Scilab 5.3.2 on my Ubuntu 11.04 machine. Can you be more explicit about the error message ? S. From gadepall at iith.ac.in Mon Jun 20 09:23:33 2011 From: gadepall at iith.ac.in (G V V Sharma) Date: Mon, 20 Jun 2011 12:53:33 +0530 Subject: [scilab-Users] semilogy plotlib issue In-Reply-To: <4DFEED58.7080200@utc.fr> References: <4DFEED58.7080200@utc.fr> Message-ID: <1B2EDAA1-EC58-47DB-849F-2B640DD3F721@iith.ac.in> !--error 4 Undefined variable: _semilogy at line 13 of exec file called by : exec('/tmp/SCI_TMP_2640_LzdEgy/LOAD_INTO_SCILAB-4408820178976694703.sce', 1) while executing a callback regards, G V V Sharma On 20-Jun-2011, at 12:18 PM, St?phane Mottelet wrote: > Le 20/06/2011 07:41, G V V Sharma a ?crit : >> Hi, >> I'm unable to run the following code on my Ubuntu 11.04, Scilab 5.3. Plotlib has been installed. I did perform an upgrade from 10.10 after installing scilab. >> >> w=logspace(-2,2,200); >> s=%i*w; >> g=1../(s.^2+0.01*s+1); >> _semilogy(w,abs(g)); >> >> >> >> regards, >> Vishwanath. >> >> On 20-Jun-2011, at 8:13 AM, Gus Ishere wrote: >> >>> I'm a first-time Scilab user and would like to simulate a model in >>> xcos (or Scicos) >>> >>> I am simulating a Numerically Controlled Oscillator and need to >>> perform modular arithmetic (modulo 2^W, W is some parameter to the >>> model). I am trying to use the Xcos "Mathematical Expression" block, >>> but it does not recognize the function "modulo". In the Scilab >>> console, though, "modulo" provides the desired functionality. I expect >>> that since "modulo" and "sin" appear in the same namespace, that I >>> would be able to use them identically in the Xcos block, but "sin" >>> works and "modulo" does not. >>> >>> Thanks, >>> Gustavo > Hello, > > I don't notice any problem with this code with plotlib 0.42 and Scilab 5.3.2 > on my Ubuntu 11.04 machine. Can you be more explicit about the > error message ? > > S. From stephane.mottelet at utc.fr Mon Jun 20 09:27:06 2011 From: stephane.mottelet at utc.fr (=?ISO-8859-1?Q?St=E9phane_Mottelet?=) Date: Mon, 20 Jun 2011 09:27:06 +0200 Subject: [scilab-Users] semilogy plotlib issue In-Reply-To: <1B2EDAA1-EC58-47DB-849F-2B640DD3F721@iith.ac.in> References: <4DFEED58.7080200@utc.fr> <1B2EDAA1-EC58-47DB-849F-2B640DD3F721@iith.ac.in> Message-ID: <4DFEF64A.1030307@utc.fr> Can you give me the output of the following command : --> atomsGetInstalled S. Le 20/06/2011 09:23, G V V Sharma a ?crit : > !--error 4 > Undefined variable: _semilogy > > at line 13 of exec file called by : > exec('/tmp/SCI_TMP_2640_LzdEgy/LOAD_INTO_SCILAB-4408820178976694703.sce', 1) > while executing a callback > > regards, > G V V Sharma > > On 20-Jun-2011, at 12:18 PM, St?phane Mottelet wrote: > >> Le 20/06/2011 07:41, G V V Sharma a ?crit : >>> Hi, >>> I'm unable to run the following code on my Ubuntu 11.04, Scilab 5.3. Plotlib has been installed. I did perform an upgrade from 10.10 after installing scilab. >>> >>> w=logspace(-2,2,200); >>> s=%i*w; >>> g=1../(s.^2+0.01*s+1); >>> _semilogy(w,abs(g)); >>> >>> >>> >>> regards, >>> Vishwanath. >>> >>> On 20-Jun-2011, at 8:13 AM, Gus Ishere wrote: >>> >>>> I'm a first-time Scilab user and would like to simulate a model in >>>> xcos (or Scicos) >>>> >>>> I am simulating a Numerically Controlled Oscillator and need to >>>> perform modular arithmetic (modulo 2^W, W is some parameter to the >>>> model). I am trying to use the Xcos "Mathematical Expression" block, >>>> but it does not recognize the function "modulo". In the Scilab >>>> console, though, "modulo" provides the desired functionality. I expect >>>> that since "modulo" and "sin" appear in the same namespace, that I >>>> would be able to use them identically in the Xcos block, but "sin" >>>> works and "modulo" does not. >>>> >>>> Thanks, >>>> Gustavo >> Hello, >> >> I don't notice any problem with this code with plotlib 0.42 and Scilab 5.3.2 >> on my Ubuntu 11.04 machine. Can you be more explicit about the >> error message ? >> >> S. From gadepall at gmail.com Mon Jun 20 09:35:24 2011 From: gadepall at gmail.com (G V V Sharma) Date: Mon, 20 Jun 2011 13:05:24 +0530 Subject: [scilab-Users] semilogy plotlib issue In-Reply-To: <1B2EDAA1-EC58-47DB-849F-2B640DD3F721@iith.ac.in> References: <4DFEED58.7080200@utc.fr> <1B2EDAA1-EC58-47DB-849F-2B640DD3F721@iith.ac.in> Message-ID: <85CE73AF-00D5-4BFF-95EB-EDFC575A2737@iith.ac.in> I was able to resolve the error. I had to download the linux.gz file into the ./atoms directory and install plotlib. seems the upgrade removed the atoms functionality. Thanks for your response. On 20-Jun-2011, at 12:53 PM, G V V Sharma wrote: > !--error 4 > Undefined variable: _semilogy > > at line 13 of exec file called by : > exec('/tmp/SCI_TMP_2640_LzdEgy/LOAD_INTO_SCILAB-4408820178976694703.sce', 1) > while executing a callback > > regards, > G V V Sharma > > On 20-Jun-2011, at 12:18 PM, St?phane Mottelet wrote: > >> Le 20/06/2011 07:41, G V V Sharma a ?crit : >>> Hi, >>> I'm unable to run the following code on my Ubuntu 11.04, Scilab 5.3. Plotlib has been installed. I did perform an upgrade from 10.10 after installing scilab. >>> >>> w=logspace(-2,2,200); >>> s=%i*w; >>> g=1../(s.^2+0.01*s+1); >>> _semilogy(w,abs(g)); >>> >>> >>> >>> regards, >>> Vishwanath. >>> >>> On 20-Jun-2011, at 8:13 AM, Gus Ishere wrote: >>> >>>> I'm a first-time Scilab user and would like to simulate a model in >>>> xcos (or Scicos) >>>> >>>> I am simulating a Numerically Controlled Oscillator and need to >>>> perform modular arithmetic (modulo 2^W, W is some parameter to the >>>> model). I am trying to use the Xcos "Mathematical Expression" block, >>>> but it does not recognize the function "modulo". In the Scilab >>>> console, though, "modulo" provides the desired functionality. I expect >>>> that since "modulo" and "sin" appear in the same namespace, that I >>>> would be able to use them identically in the Xcos block, but "sin" >>>> works and "modulo" does not. >>>> >>>> Thanks, >>>> Gustavo >> Hello, >> >> I don't notice any problem with this code with plotlib 0.42 and Scilab 5.3.2 >> on my Ubuntu 11.04 machine. Can you be more explicit about the >> error message ? >> >> S. > From Serge.Steer at inria.fr Mon Jun 20 11:47:47 2011 From: Serge.Steer at inria.fr (Serge Steer) Date: Mon, 20 Jun 2011 11:47:47 +0200 Subject: [scilab-Users] Function resize_matrix with hypermatrix In-Reply-To: <1307605325157-3042842.post@n3.nabble.com> References: <1307605325157-3042842.post@n3.nabble.com> Message-ID: <4DFF1743.8040601@inria.fr> Le 09/06/2011 09:42, Orbeman a ?crit : > Hello, > > Does the function resize_matrix with hypermatrix ? It si a similar function > for hypermatrix ? > > I envisage to resize my hypermatrix with this function with redefined 2D sub > matrix and concatenated this 2D matrix to create the new hypermatrix. > > Thank you. > > -- > View this message in context: http://mailinglists.scilab.org/Function-resize-matrix-with-hypermatrix-tp3042842p3042842.html > Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. > > You can use the matrix function instead of resize_matrix to do the job Serge Steer INRIA From lukeaarond at gmail.com Mon Jun 20 22:40:58 2011 From: lukeaarond at gmail.com (lukeaarond) Date: Mon, 20 Jun 2011 13:40:58 -0700 (PDT) Subject: Web Scraping in Scilab Message-ID: <1308602458239-3088047.post@n3.nabble.com> I have been trying to extract information from a website using the UNIX() function. The information saved by UNIX() seems to be in xml format. When using xmltohtml() I get the following error: Building the master document: C:\Users\luke-rond\Documents\Molecular Evolution\Codes\URL Access\1 URL Access Building the manual file [html] in C:\Users\luke-rond\Documents\Molecular Evolution\Codes\URL Access\1 URL Access. An error occured during the conversion: org.xml.sax.SAXParseException: expected comment or CDATA section (found "D") at com.icl.saxon.aelfred.SAXDriver.error(SAXDriver.java:857) at com.icl.saxon.aelfred.XmlParser.error(XmlParser.java:463) at com.icl.saxon.aelfred.XmlParser.error(XmlParser.java:478) at com.icl.saxon.aelfred.XmlParser.parseContent(XmlParser.java:1207) at com.icl.saxon.aelfred.XmlParser.parseElement(XmlParser.java:1037) at com.icl.saxon.aelfred.XmlParser.parseContent(XmlParser.java:1222) at com.icl.saxon.aelfred.XmlParser.parseElement(XmlParser.java:1037) at com.icl.saxon.aelfred.XmlParser.parseDocument(XmlParser.java:510) at com.icl.saxon.aelfred.XmlParser.doParse(XmlParser.java:163) at com.icl.saxon.aelfred.SAXDriver.parse(SAXDriver.java:320) at javax.xml.parsers.SAXParser.parse(Unknown Source) at javax.xml.parsers.SAXParser.parse(Unknown Source) at org.scilab.forge.scidoc.HTMLDocbookLinkResolver.resolvLinks(Unknown Source) at org.scilab.forge.scidoc.HTMLDocbookLinkResolver.(Unknown Source) at org.scilab.forge.scidoc.HTMLDocbookTagConverter.(Unknown Source) at org.scilab.forge.scidoc.SciDocMain.process(Unknown Source) !--error 10000 xmltoformat: C:\Users\luke-rond\Documents\Molecular Evolution\Codes\URL Access\1 URL Access\scilab_en_US_help\index.html has not been generated. at line 736 of function xmltoformat called by : at line 15 of function xmltohtml called by : ution/Codes/URL Access/1 URL Access",filename,"en_US") at line 20 of exec file called by : exec('C:\Users\luke-rond\Documents\Molecular Evolution\Codes\URL Access\1 URL Access\URLaccess_1a.sce', -1) Here is my code: URL="http://www.ncbi.nlm.nih.gov/nuccore/NM_000419"; filename="file.xml"; rep=unix_g(SCI+"/tools/curl/curl -o "+filename+" "+URL); out = xmltohtml("C:/Users/luke-rond/Documents/Molecular Evolution/Codes/URL Access/1 URL Access",filename,"en_US"); Thank you. -- View this message in context: http://mailinglists.scilab.org/Web-Scraping-in-Scilab-tp3088047p3088047.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From Samuel.Gougeon at univ-lemans.fr Tue Jun 21 11:05:15 2011 From: Samuel.Gougeon at univ-lemans.fr (Samuel GOUGEON) Date: Tue, 21 Jun 2011 11:05:15 +0200 Subject: [scilab-Users] Web Scraping in Scilab In-Reply-To: <1308602458239-3088047.post@n3.nabble.com> References: <1308602458239-3088047.post@n3.nabble.com> Message-ID: <4E005ECB.5040609@univ-lemans.fr> ----- Message d'origine ----- De : lukeaarond Date : 20/06/2011 22:40: > I have been trying to extract information from a website using the UNIX() > function. The information saved by UNIX() seems to be in xml format. It is the target of your URL that is in xml. unix() does not convert anything. xmltohtml() is dedicated to the processing of Scilab's help pages. help pages are sourced in xml. Then, various functions translate xml sources in HTML pages, or Java pages (embedded help pages), or into PDF, etc. Now, your target is not a XML Scilab help file. So none of the Scilab xmlto##() is applicable to it. HTH Samuel > When > using xmltohtml() I get the following error: > > Building the master document: > C:\Users\luke-rond\Documents\Molecular Evolution\Codes\URL Access\1 URL > Access > > Building the manual file [html] in C:\Users\luke-rond\Documents\Molecular > Evolution\Codes\URL Access\1 URL Access. > An error occured during the conversion: > .../... From chi.venier at gmail.com Tue Jun 21 15:41:19 2011 From: chi.venier at gmail.com (Chiara Venier) Date: Tue, 21 Jun 2011 15:41:19 +0200 Subject: uploading a file txt Message-ID: 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. load('grd.txt'); !--error 246 Function not defined for given argument type(s), check arguments or define function %_load for overloading. How shall I solve the problem? Thanks Chiara Venier -------------- next part -------------- An HTML attachment was scrubbed... URL: From gus.is.here at gmail.com Tue Jun 21 16:14:21 2011 From: gus.is.here at gmail.com (Gus Ishere) Date: Tue, 21 Jun 2011 10:14:21 -0400 Subject: modulo function in xcos In-Reply-To: References: Message-ID: Sorry for the repost, but the news readers show this thread with another thread (since someone replied to this message, changing the subject line). I'm still having this issue. On Sun, Jun 19, 2011 at 10:43 PM, Gus Ishere wrote: > I'm a first-time Scilab user and would like to simulate a model in > xcos (or Scicos) > > I am simulating a Numerically Controlled Oscillator and need to > perform modular arithmetic (modulo 2^W, W is some parameter to the > model). I am trying to use the Xcos "Mathematical Expression" block, > but it does not recognize the function "modulo". In the Scilab > console, though, "modulo" provides the desired functionality. I expect > that since "modulo" and "sin" appear in the same namespace, that I > would be able to use them identically in the Xcos block, but "sin" > works and "modulo" does not. > > Thanks, > Gustavo > From mathieu.dubois at limsi.fr Tue Jun 21 17:03:46 2011 From: mathieu.dubois at limsi.fr (Mathieu Dubois) Date: Tue, 21 Jun 2011 17:03:46 +0200 Subject: [scilab-Users] uploading a file txt In-Reply-To: References: Message-ID: <4E00B2D2.3040807@limsi.fr> Hello, On 06/21/2011 03:41 PM, Chiara Venier 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 Venier > From sylvestre.ledru at scilab.org Tue Jun 21 17:57:17 2011 From: sylvestre.ledru at scilab.org (Sylvestre Ledru) Date: Tue, 21 Jun 2011 17:57:17 +0200 Subject: [scilab-Users] SIVP module error while loading In-Reply-To: References: Message-ID: <1308671837.10944.52.camel@losinj.inria.fr> Le vendredi 17 juin 2011 ? 04:21 +0530, Manjusha Joshi a ?crit : > > Hi, > > While adding SIVP module on laptop with OS Mandriva 2010 with Scilab > version 5.3.2 > I got following message. > > SIVP - Scilab Image and Video Processing Toolbox > Load macros > Load gateways > atomsLoad: An error occurred while loading 'SIVP-0.5.3-3': > link: The shared archive was not loaded: libschroedinger-1.0.so.0: > cannot open shared object file: No such file or directory Looks like a packaging bug... maybe with the opencv mandriva package ... You could ask on the mandriva mailing lists. Sylvestre From sylvestre.ledru at scilab.org Tue Jun 21 17:58:52 2011 From: sylvestre.ledru at scilab.org (Sylvestre Ledru) Date: Tue, 21 Jun 2011 17:58:52 +0200 Subject: [scilab-Users] How to activate several processors ? In-Reply-To: <000b01cc2bed$f915a2d0$eb40e870$@carrico@free.fr> References: <000b01cc2bed$f915a2d0$eb40e870$@carrico@free.fr> Message-ID: <1308671932.10944.55.camel@losinj.inria.fr> Le jeudi 16 juin 2011 ? 08:23 +0200, Paul CARRICO a ?crit : > Dear All, > > > > I?m thinking in using search algorithm by dichotomy on a work station > having several cores (2 processors ? 8 cores) ? is it possible to > select several processors to increase the speed up ? > > > > If so where can I find some information ? Under Linux & Mac OS X, you can have a look to parallel_run: http://help.scilab.org/docs/5.3.2/en_US/parallel_run.html Sylvestre From sylvestre.ledru at scilab.org Tue Jun 21 18:17:14 2011 From: sylvestre.ledru at scilab.org (Sylvestre Ledru) Date: Tue, 21 Jun 2011 18:17:14 +0200 Subject: [scilab-Users] Questions about XCOS licensing and code generation In-Reply-To: <4DE023A1.700@gmail.com> References: <4DE023A1.700@gmail.com> Message-ID: <1308673034.10944.63.camel@losinj.inria.fr> Le samedi 28 mai 2011 ? 00:20 +0200, Andrea.Amorosi76 at gmail.com a ?crit : > Hi to all, > I have some questions regarding the license to use with XCOS models and > generated C: > 1) the C code generated from a XCOS model should be released with the > same license? Generated code as the same license the input you provided to generate the code. IE, if your origin code is under the GPL license, your generated code will be under the same license. > 2) what kind of license should be used if the XCOS model contains some > models/palettes released under the GPL license? GPL or a compatible license. > Moreover I would like to have some hints on how to interface XCOS with a > joystick and how to send data via UDP. Please be more specific in your question. Sylvestre From haraldgalda at yahoo.com Tue Jun 21 20:41:10 2011 From: haraldgalda at yahoo.com (Harald Galda, Dr. Eng. (J)) Date: Tue, 21 Jun 2011 11:41:10 -0700 (PDT) Subject: AW: [scilab-Users] Questions about XCOS licensing and code generation In-Reply-To: <1308673034.10944.63.camel@losinj.inria.fr> References: <4DE023A1.700@gmail.com> <1308673034.10944.63.camel@losinj.inria.fr> Message-ID: <255546.54054.qm@web112615.mail.gq1.yahoo.com> Dear users, I would like to know more about the license of generated code: Are the standard blocks and palettes that come with XCos under the CeCILL license? If an XCos user designs an XCos model, generates C code from it and compiles the C code to object code, can this object code be distributed as open source software only? When distributing PC software for scientific computation, it is basically no problem to deliever the source code along with object code and to allow the user to do anything with it the author can also do. However, things are different with embedded systems for the following reasons: 1. It might not be possible to change the software on the device it is running on because the DSP or micro controller it is running on is not accessable. This is applies to cars, for example. It is difficult to discourage or even to forbid disassembling a system and to allow modifying the software controlling it at the same time. 2. The safety of the user, the device or the environment might be endangered when software is modified by people not qualified to do so. If a medical doctor modifies the software controlling medical equipment, the equipment with the modified software might be harmful for patients or medical personnel. I do support the open source concept. However, I do not intend to sacrifice the safety, security or reliability of a technical system I develop for the sake of allowing users to play around with the software. Best regards Harald Galda From communication at scilab.org Wed Jun 22 17:02:33 2011 From: communication at scilab.org (Scilab Communication) Date: Wed, 22 Jun 2011 17:02:33 +0200 Subject: D-7 - Registrate to the 3rd edition of Scilab Users Day, Wednesday 29 June 2011 Message-ID: <4E020409.7010703@scilab.org> *It is still time to registrate to ScilabTEC 2011* It is on wednesday 29 June at the ?cole Polytechnique, Palaiseau (91). Open invitation, online registration required: http://www.teratec.eu/gb/forum/inscription.php *With the participation of ArcelorMittal, Sirehna and Valeo.* Complete program: http://www.scilab.org/news/events/20110502 ScilabTEC2011 ---------------------------------- The Scilab Consortium http://www.scilab.org ---------------------------------- Digiteo Domaine de Voluceau Rocquencourt - B.P. 105 78153 Le Chesnay Cedex - France -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/png Size: 75938 bytes Desc: not available URL: From toocool244 at hotmail.com Fri Jun 24 02:57:48 2011 From: toocool244 at hotmail.com (toocool244) Date: Thu, 23 Jun 2011 17:57:48 -0700 (PDT) Subject: ejecutable de scilab In-Reply-To: References: Message-ID: <1308877068826-3102429.post@n3.nabble.com> Estimated scilab community I write because I have a concern with this program. DEVELOPING long I'm a software platform in scilab, but now I have it I find that you can not make an executable from scilab or at least I have not found a way to compile it. I've seen that matlab can do this now I want to know if you have any solution to get an executable as well as matlab does. -- View this message in context: http://mailinglists.scilab.org/ejecutable-de-scilab-tp2920493p3102429.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From Mike at Page-One.Waitrose.com Fri Jun 24 09:50:25 2011 From: Mike at Page-One.Waitrose.com (Mike Page) Date: Fri, 24 Jun 2011 08:50:25 +0100 Subject: [scilab-Users] Re: ejecutable de scilab In-Reply-To: <1308877068826-3102429.post@n3.nabble.com> Message-ID: Hi, You can try Scilab2C and then compile the result (see http://atoms.scilab.org/toolboxes/scilab2c/). But this has some limitations. I succeeded by writing a C program that passed the Scilab code to the Scilab engine using SendScilabJob (see help). This is not very convenient for large programs, but it worked for me. Regards, Mike. -----Original Message----- From: toocool244 [mailto:toocool244 at hotmail.com] Sent: 24 June 2011 01:58 To: users at lists.scilab.org Subject: [scilab-Users] Re: ejecutable de scilab Estimated scilab community I write because I have a concern with this program. DEVELOPING long I'm a software platform in scilab, but now I have it I find that you can not make an executable from scilab or at least I have not found a way to compile it. I've seen that matlab can do this now I want to know if you have any solution to get an executable as well as matlab does. -- View this message in context: http://mailinglists.scilab.org/ejecutable-de-scilab-tp2920493p3102429.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. No virus found in this incoming message. Checked by AVG - www.avg.com Version: 9.0.901 / Virus Database: 271.1.1/3721 - Release Date: 06/23/11 07:34:00 From vogt at centre-cired.fr Fri Jun 24 10:49:34 2011 From: vogt at centre-cired.fr (Adrien Vogt-Schilb) Date: Fri, 24 Jun 2011 10:49:34 +0200 Subject: [scilab-Users] Re: ejecutable de scilab In-Reply-To: References: Message-ID: <4E044F9E.5040306@centre-cired.fr> Hi Mike, I thought that the purpose of compiling scilab code was to speed up the resolution and also maybe to be able to have a standalone program, that does not need scilab to be installed. So i am curious: what is the purpose of sending code from a C program to Scilab? What the advantages over, saving a sript in a text file and asking directly scilab to execute it via a simple command line for instance? Does it speed up calculations? I ask because I use a lot of programs for my research myself, and i am interested in anything for automating scilab computations for instance On 24/06/2011 09:50, Mike Page wrote: > Hi, > > You can try Scilab2C and then compile the result (see > http://atoms.scilab.org/toolboxes/scilab2c/). But this has some > limitations. I succeeded by writing a C program that passed the Scilab code > to the Scilab engine using SendScilabJob (see help). This is not very > convenient for large programs, but it worked for me. > > Regards, > Mike. > > > -----Original Message----- > From: toocool244 [mailto:toocool244 at hotmail.com] > Sent: 24 June 2011 01:58 > To: users at lists.scilab.org > Subject: [scilab-Users] Re: ejecutable de scilab > > > Estimated scilab community I write because I have a concern with this > program. DEVELOPING long I'm a software platform in scilab, but now I have > it I find that you can not make an executable from scilab or at least I have > not found a way to compile it. I've seen that matlab can do this now I want > to know if you have any solution to get an executable as well as matlab > does. > > > > -- > View this message in context: > http://mailinglists.scilab.org/ejecutable-de-scilab-tp2920493p3102429.html > Sent from the Scilab users - Mailing Lists Archives mailing list archive at > Nabble.com. > > No virus found in this incoming message. > Checked by AVG - www.avg.com > Version: 9.0.901 / Virus Database: 271.1.1/3721 - Release Date: 06/23/11 > 07:34:00 -- *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 Mike at Page-One.Waitrose.com Fri Jun 24 11:23:06 2011 From: Mike at Page-One.Waitrose.com (Mike Page) Date: Fri, 24 Jun 2011 10:23:06 +0100 Subject: [scilab-Users] Re: ejecutable de scilab In-Reply-To: <4E044F9E.5040306@centre-cired.fr> Message-ID: Hi Adrien, In this case, I had to integrate some code I had written in Scilab with some other code I had written in C. It was just a quick way to achieve a final executable program. I was not so interested in speed for that particular application. You are right that SendScilabJob still uses the interpreter, so it does not gain all the advantages of compiled code, but it does achieve the objective of making an executable file. But when I think more about this, maybe it is not a good solution for this particular question. Thanks for your comments - always useful. Mike. -----Original Message----- From: Adrien Vogt-Schilb [mailto:vogt at centre-cired.fr] Sent: 24 June 2011 09:50 To: users at lists.scilab.org Subject: Re: [scilab-Users] Re: ejecutable de scilab Hi Mike, I thought that the purpose of compiling scilab code was to speed up the resolution and also maybe to be able to have a standalone program, that does not need scilab to be installed. So i am curious: what is the purpose of sending code from a C program to Scilab? What the advantages over, saving a sript in a text file and asking directly scilab to execute it via a simple command line for instance? Does it speed up calculations? I ask because I use a lot of programs for my research myself, and i am interested in anything for automating scilab computations for instance On 24/06/2011 09:50, Mike Page wrote: Hi, You can try Scilab2C and then compile the result (see http://atoms.scilab.org/toolboxes/scilab2c/). But this has some limitations. I succeeded by writing a C program that passed the Scilab code to the Scilab engine using SendScilabJob (see help). This is not very convenient for large programs, but it worked for me. Regards, Mike. -----Original Message----- From: toocool244 [mailto:toocool244 at hotmail.com] Sent: 24 June 2011 01:58 To: users at lists.scilab.org Subject: [scilab-Users] Re: ejecutable de scilab Estimated scilab community I write because I have a concern with this program. DEVELOPING long I'm a software platform in scilab, but now I have it I find that you can not make an executable from scilab or at least I have not found a way to compile it. I've seen that matlab can do this now I want to know if you have any solution to get an executable as well as matlab does. -- View this message in context: http://mailinglists.scilab.org/ejecutable-de-scilab-tp2920493p3102429.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. No virus found in this incoming message. Checked by AVG - www.avg.com Version: 9.0.901 / Virus Database: 271.1.1/3721 - Release Date: 06/23/11 07:34:00 -- Adrien Vogt-Schilb Research Fellow vogt at centre-cired.fr Tel: (+33) 1 43 94 73 96 Fax: (+33) 1 43 94 73 70 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 stustd at gmail.com Fri Jun 24 13:52:53 2011 From: stustd at gmail.com (Burley) Date: Fri, 24 Jun 2011 04:52:53 -0700 (PDT) Subject: JVM libhdf5 problem: almost crash Message-ID: <1308916373251-3103764.post@n3.nabble.com> I have installed Scilab 5.3.2 and whilst loading a *.cosf file in Xcos I receive the error (below) in the Scilab window. (I'm on Linux/Debian Sqeeze, amd64 i7 architecture) Has anybody an idea....? Thanks. !--error 42 Oups. A fatal error has been detected by Scilab. Your instance will probably crash soon. Please report a bug on http://bugzilla.scilab.org/ with the following information: [reunion:15586] Signal: Segmentation fault (11) [reunion:15586] Signal code: Address not mapped (1) [reunion:15586] Failing at address: (nil) Call stack: 1: 0x7f8f416d28d6 <JVM_handle_linux_signal+0x86> (/usr/lib/jvm/java-6-openjdk//jre/lib/amd64/server/libjvm.so) 2: 0x7f8f44364f60 <+0xef60> (/lib/libpthread.so.0) 3: 0x7f8f4767b169 <+0x21b169> (/usr/lib/libhdf5.so.6) 4: 0x7f8f4767dd78 <H5SL_insert+0x3e> (/usr/lib/libhdf5.so.6) 5: 0x7f8f4764d458 <H5P_copy_plist+0x902> (/usr/lib/libhdf5.so.6) 6: 0x7f8f47510c41 <+0xb0c41> (/usr/lib/libhdf5.so.6) 7: 0x7f8f4751378c <+0xb378c> (/usr/lib/libhdf5.so.6) 8: 0x7f8f475133f6 <H5D_open+0x291> (/usr/lib/libhdf5.so.6) 9: 0x7f8f476597cc <+0x1f97cc> (/usr/lib/libhdf5.so.6) 10: 0x7f8f47659c28 <H5Rdereference+0x2c2> (/usr/lib/libhdf5.so.6) 11: 0x7f8f1451d9ab <Java_ncsa_hdf_hdf5lib_H5__1H5Rdereference+0x125> (/usr/lib/jni/libjhdf5.so) 12: ? ? ([0x7f8f3d6fdd77) End of stack !--error 999 Aborting current computation -- View this message in context: http://mailinglists.scilab.org/JVM-libhdf5-problem-almost-crash-tp3103764p3103764.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From lukeaarond at gmail.com Fri Jun 24 19:22:31 2011 From: lukeaarond at gmail.com (lukeaarond) Date: Fri, 24 Jun 2011 10:22:31 -0700 (PDT) Subject: using wget in scilab Message-ID: <1308936151288-3105289.post@n3.nabble.com> I have been trying to execute wget in scilab, but am having no luck. Here is my code: unix('wget -O findme.txt http://www.ncbi.nlm.nih.gov/nuccore/NM_000419') Nowhere in my current directory is findme.txt. Even when I do a search of my computer for 'findme' nothing is found. Also, no error messages are even displayed when running this code. Any suggestions? Thank you in advance. -- View this message in context: http://mailinglists.scilab.org/using-wget-in-scilab-tp3105289p3105289.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From lukeaarond at gmail.com Fri Jun 24 19:23:55 2011 From: lukeaarond at gmail.com (lukeaarond) Date: Fri, 24 Jun 2011 10:23:55 -0700 (PDT) Subject: Web Scraping in Scilab In-Reply-To: <4E005ECB.5040609@univ-lemans.fr> References: <1308602458239-3088047.post@n3.nabble.com> <4E005ECB.5040609@univ-lemans.fr> Message-ID: <1308936235881-3105296.post@n3.nabble.com> I did not realize xmlto*** was only for help files. Thank you for your help. -- View this message in context: http://mailinglists.scilab.org/Web-Scraping-in-Scilab-tp3088047p3105296.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From calixte at contrib.scilab.org Fri Jun 24 19:33:20 2011 From: calixte at contrib.scilab.org (Calixte Denizet) Date: Fri, 24 Jun 2011 19:33:20 +0200 Subject: [scilab-Users] using wget in scilab In-Reply-To: <1308936151288-3105289.post@n3.nabble.com> References: <1308936151288-3105289.post@n3.nabble.com> Message-ID: <1308936800.15024.17.camel@Calixte-Dell> Hi, Le vendredi 24 juin 2011 ? 10:22 -0700, lukeaarond a ?crit : > I have been trying to execute wget in scilab, but am having no luck. Here is > my code: > > unix('wget -O findme.txt http://www.ncbi.nlm.nih.gov/nuccore/NM_000419') > I just tryed in 5.3.2: mydir='/tmp';cd(mydir);unix('wget -O findme.txt http://www.ncbi.nlm.nih.gov/nuccore/NM_000419');find(ls(mydir)=='findme.txt') and that works. Regards, Calixte > Nowhere in my current directory is findme.txt. Even when I do a search of my > computer for 'findme' nothing is found. Also, no error messages are even > displayed when running this code. Any suggestions? Thank you in advance. > > -- > View this message in context: http://mailinglists.scilab.org/using-wget-in-scilab-tp3105289p3105289.html > Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From mathieu.dubois at limsi.fr Fri Jun 24 21:57:48 2011 From: mathieu.dubois at limsi.fr (Mathieu Dubois) Date: Fri, 24 Jun 2011 21:57:48 +0200 Subject: [scilab-Users] using wget in scilab In-Reply-To: <1308936800.15024.17.camel@Calixte-Dell> References: <1308936151288-3105289.post@n3.nabble.com> <1308936800.15024.17.camel@Calixte-Dell> Message-ID: <4E04EC3C.2010201@limsi.fr> Hello, Le 24/06/2011 19:33, Calixte Denizet a ?crit : > Hi, > > Le vendredi 24 juin 2011 ? 10:22 -0700, lukeaarond a ?crit : >> I have been trying to execute wget in scilab, but am having no luck. Here is >> my code: >> >> unix('wget -O findme.txt http://www.ncbi.nlm.nih.gov/nuccore/NM_000419') >> > > I just tryed in 5.3.2: > mydir='/tmp';cd(mydir);unix('wget -O findme.txt > http://www.ncbi.nlm.nih.gov/nuccore/NM_000419');find(ls(mydir)=='findme.txt') > > and that works. It works for me too (with your command, not Calixte's one)! Stupid question: does the command wget -O findme.txt http://www.ncbi.nlm.nih.gov/nuccore/NM_000419 works in a shell? Second stupid question: did you tried with host instead of unix? If you start scilab from a shell, you will see the output of the command in the shell when using unix. Maybe that will help.... Mathieu > > Regards, > > Calixte > >> Nowhere in my current directory is findme.txt. Even when I do a search of my >> computer for 'findme' nothing is found. Also, no error messages are even >> displayed when running this code. Any suggestions? Thank you in advance. >> >> -- >> View this message in context: http://mailinglists.scilab.org/using-wget-in-scilab-tp3105289p3105289.html >> Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. > > From lukeaarond at gmail.com Sat Jun 25 00:12:33 2011 From: lukeaarond at gmail.com (lukeaarond) Date: Fri, 24 Jun 2011 15:12:33 -0700 (PDT) Subject: using wget in scilab In-Reply-To: <4E04EC3C.2010201@limsi.fr> References: <1308936151288-3105289.post@n3.nabble.com> <1308936800.15024.17.camel@Calixte-Dell> <4E04EC3C.2010201@limsi.fr> Message-ID: <1308953553377-3106501.post@n3.nabble.com> *Calixte:* I tried your code, but changed the directory to a folder on my computer because Scilab said that 'cd: cannot go to directory /tmp' my code, with the new directory is: mydir='C:\Users\luke-rond\Documents\Molecular Evolution\Codes\URL Access\4 wget'; cd(mydir); unix('wget http://www.ncbi.nlm.nih.gov/nuccore/NM_000419'); ii=find(ls(mydir)=='findme.txt') ii is set to an empty array, meaning that 'findme.txt' was not found. A possible reason, though doubtful, could that it is tryingt to save the file where I do not have write authorization. However, I assume the file should save to my current directory which I do have write authorization to. When it 'worked' for you, what happened? did it save the file on your computer? where? *Mathieu:* That sounds like a good plan. I am an amateur when it comes to unix. How would I start Scilab from a shell? Also, what do you mean by host instead of unix? Thank you both for your help -- View this message in context: http://mailinglists.scilab.org/using-wget-in-scilab-tp3105289p3106501.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From lukeaarond at gmail.com Sat Jun 25 00:17:16 2011 From: lukeaarond at gmail.com (lukeaarond) Date: Fri, 24 Jun 2011 15:17:16 -0700 (PDT) Subject: using wget in scilab In-Reply-To: <1308953553377-3106501.post@n3.nabble.com> References: <1308936151288-3105289.post@n3.nabble.com> <1308936800.15024.17.camel@Calixte-Dell> <4E04EC3C.2010201@limsi.fr> <1308953553377-3106501.post@n3.nabble.com> Message-ID: <1308953836769-3106521.post@n3.nabble.com> sorry Calixte, my code is: mydir='C:\Users\luke-rond\Documents\Molecular Evolution\Codes\URL Access\4 wget'; cd(mydir); unix('wget -O findme.txt http://www.ncbi.nlm.nih.gov/nuccore/NM_000419'); ii=find(ls(mydir)=='findme.txt') -- View this message in context: http://mailinglists.scilab.org/using-wget-in-scilab-tp3105289p3106521.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From tiraduvidascefet at yahoo.com Sat Jun 25 20:01:45 2011 From: tiraduvidascefet at yahoo.com (Prof. Dr. Reinaldo Golmia Dante) Date: Sat, 25 Jun 2011 11:01:45 -0700 (PDT) Subject: Drawing Y-axis in graph Message-ID: <1309024905.23775.YahooMailNeo@web45505.mail.sp1.yahoo.com> 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 sumit.adhikari at gmail.com Sat Jun 25 20:18:44 2011 From: sumit.adhikari at gmail.com (Sumit Adhikari) Date: Sat, 25 Jun 2011 20:18:44 +0200 Subject: [scilab-Users] Drawing Y-axis in graph In-Reply-To: <1309024905.23775.YahooMailNeo@web45505.mail.sp1.yahoo.com> References: <1309024905.23775.YahooMailNeo@web45505.mail.sp1.yahoo.com> Message-ID: 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 < tiraduvidascefet at yahoo.com> 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 = -4x_final = 4xdata = 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 displaysdrawaxis(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 tiraduvidascefet at yahoo.com Sat Jun 25 21:04:26 2011 From: tiraduvidascefet at yahoo.com (Prof. Dr. Reinaldo Golmia Dante) Date: Sat, 25 Jun 2011 12:04:26 -0700 (PDT) Subject: [scilab-Users] Drawing Y-axis in graph In-Reply-To: References: <1309024905.23775.YahooMailNeo@web45505.mail.sp1.yahoo.com> Message-ID: <1309028666.18229.YahooMailNeo@web45507.mail.sp1.yahoo.com> 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 sumit.adhikari at gmail.com Sat Jun 25 21:09:08 2011 From: sumit.adhikari at gmail.com (Sumit Adhikari) Date: Sat, 25 Jun 2011 21:09:08 +0200 Subject: [scilab-Users] Drawing Y-axis in graph In-Reply-To: <1309028666.18229.YahooMailNeo@web45507.mail.sp1.yahoo.com> References: <1309024905.23775.YahooMailNeo@web45505.mail.sp1.yahoo.com> <1309028666.18229.YahooMailNeo@web45507.mail.sp1.yahoo.com> Message-ID: 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 < tiraduvidascefet at yahoo.com> 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 < > tiraduvidascefet at yahoo.com> 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 = -4x_final = 4xdata = 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 displaysdrawaxis(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 sumit.adhikari at gmail.com Sat Jun 25 21:13:55 2011 From: sumit.adhikari at gmail.com (Sumit Adhikari) Date: Sat, 25 Jun 2011 21:13:55 +0200 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: Seems a good time for you to migrate to newer versions of 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 9:09 PM, Sumit Adhikari wrote: > 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 < > tiraduvidascefet at yahoo.com> 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 < >> tiraduvidascefet at yahoo.com> 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 = -4x_final = 4xdata = 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 displaysdrawaxis(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 tiraduvidascefet at yahoo.com Sat Jun 25 21:14:50 2011 From: tiraduvidascefet at yahoo.com (Prof. Dr. Reinaldo Golmia Dante) Date: Sat, 25 Jun 2011 12:14:50 -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: <1309029290.39066.YahooMailNeo@web45511.mail.sp1.yahoo.com> That's what I see too. However, if you look the position of Y-axis, it is at x = -4. ? I would like to center Y-axis at x = 0. Do you understand me ? ? All best, Reinaldo ? ? ?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 tiraduvidascefet at yahoo.com Sat Jun 25 21:18:15 2011 From: tiraduvidascefet at yahoo.com (Prof. Dr. Reinaldo Golmia Dante) Date: Sat, 25 Jun 2011 12:18:15 -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: <1309029495.77191.YahooMailNeo@web45513.mail.sp1.yahoo.com> I have Scilab 5.3 ... Why ? If you see your graph, when the function crosses zero, it doesn't appear Y-axis at x = 0. ? ? ? ? ? From: Sumit Adhikari To: users at lists.scilab.org Sent: Saturday, June 25, 2011 4:13 PM Subject: Re: [scilab-Users] Drawing Y-axis in graph Seems a good time for you to migrate to newer versions of 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 9:09 PM, Sumit Adhikari wrote: 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 sumit.adhikari at gmail.com Sat Jun 25 21:24:39 2011 From: sumit.adhikari at gmail.com (Sumit Adhikari) Date: Sat, 25 Jun 2011 21:24:39 +0200 Subject: [scilab-Users] Drawing Y-axis in graph In-Reply-To: <1309029495.77191.YahooMailNeo@web45513.mail.sp1.yahoo.com> References: <1309024905.23775.YahooMailNeo@web45505.mail.sp1.yahoo.com> <1309028666.18229.YahooMailNeo@web45507.mail.sp1.yahoo.com> <1309029495.77191.YahooMailNeo@web45513.mail.sp1.yahoo.com> Message-ID: Sorry for understanding the problem wrongly! Although, I have never used such kind of plots, but from the document what appears is that your script is correct. 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:18 PM, Prof. Dr. Reinaldo Golmia Dante < tiraduvidascefet at yahoo.com> wrote: > I have Scilab 5.3 ... > Why ? > If you see your graph, when the function crosses zero, it doesn't appear > Y-axis at x = 0. > > > > > > *From:* Sumit Adhikari > *To:* users at lists.scilab.org > *Sent:* Saturday, June 25, 2011 4:13 PM > > *Subject:* Re: [scilab-Users] Drawing Y-axis in graph > > Seems a good time for you to migrate to newer versions of 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 9:09 PM, Sumit Adhikari wrote: > > 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 < > tiraduvidascefet at yahoo.com> 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 < > tiraduvidascefet at yahoo.com> 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 = -4x_final = 4xdata = 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 displaysdrawaxis(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 Jun 25 21:25:00 2011 From: Samuel.Gougeon at univ-lemans.fr (Samuel GOUGEON) Date: Sat, 25 Jun 2011 21:25:00 +0200 Subject: [scilab-Users] Drawing Y-axis in graph In-Reply-To: <1309028666.18229.YahooMailNeo@web45507.mail.sp1.yahoo.com> References: <1309024905.23775.YahooMailNeo@web45505.mail.sp1.yahoo.com> <1309028666.18229.YahooMailNeo@web45507.mail.sp1.yahoo.com> Message-ID: <4E06360C.3080607@univ-lemans.fr> Do you want to keep Y-axis on the left and add another one at x=0, or does moving Y-axis from the left to the center would be ok ? From tiraduvidascefet at yahoo.com Sat Jun 25 21:31:16 2011 From: tiraduvidascefet at yahoo.com (Prof. Dr. Reinaldo Golmia Dante) Date: Sat, 25 Jun 2011 12:31:16 -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> <1309029495.77191.YahooMailNeo@web45513.mail.sp1.yahoo.com> Message-ID: <1309030276.66818.YahooMailNeo@web45505.mail.sp1.yahoo.com> I found a way but it is still unsolved completely. ? Check it:function f=funcao(x) f = 2*x*exp(-x^2); endfunction x_inicial = -4 x_final = 4 n = 100; 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) 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='r',tics='v'); // I try to do the same, but Y-axis does not display :-((( drawaxis(y=y_inicial:y_final,x=0,dir='r',tics='v'); legend ( "2*x*exp(-x^2)" ); If you see the Y-axis goes from the minimum point (image of function) to 0.1. That's the problem. It should go to maximum point of function image (= y_final). ? Why does it not go to y_final value ? :-(( ? I write that script because I can ajust the low and high bound of Y_axis according to the given function. ? I appreaciate your comments. ? All best, Reinaldo. ?From: Sumit Adhikari To: users at lists.scilab.org Sent: Saturday, June 25, 2011 4:24 PM Subject: Re: [scilab-Users] Drawing Y-axis in graph Sorry for understanding the problem wrongly! Although, I have never used such kind of plots, but from the document what appears is that your script is correct. 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:18 PM, Prof. Dr. Reinaldo Golmia Dante wrote: I have Scilab 5.3 ... >Why ? >If you see your graph, when the function crosses zero, it doesn't appear Y-axis at x = 0. >? >? >? >? >? >From: Sumit Adhikari >To: users at lists.scilab.org >Sent: Saturday, June 25, 2011 4:13 PM > >Subject: Re: [scilab-Users] Drawing Y-axis in graph > > >Seems a good time for you to migrate to newer versions of 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 9:09 PM, Sumit Adhikari wrote: > >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 tiraduvidascefet at yahoo.com Sat Jun 25 21:33:27 2011 From: tiraduvidascefet at yahoo.com (Prof. Dr. Reinaldo Golmia Dante) Date: Sat, 25 Jun 2011 12:33:27 -0700 (PDT) Subject: [scilab-Users] Drawing Y-axis in graph In-Reply-To: <4E06360C.3080607@univ-lemans.fr> References: <1309024905.23775.YahooMailNeo@web45505.mail.sp1.yahoo.com> <1309028666.18229.YahooMailNeo@web45507.mail.sp1.yahoo.com> <4E06360C.3080607@univ-lemans.fr> Message-ID: <1309030407.66843.YahooMailNeo@web45516.mail.sp1.yahoo.com> I would like to have both. ? Some students have difficult to understand graphs using only Y-axis on the corner. For that reason, it is interesting to have Y-axis at x = 0. ?From: Samuel GOUGEON To: users at lists.scilab.org Sent: Saturday, June 25, 2011 4:25 PM Subject: Re: [scilab-Users] Drawing Y-axis in graph Do you want to keep Y-axis on the left and add another one at x=0, or does moving Y-axis from the left to the center would be ok ? -------------- next part -------------- An HTML attachment was scrubbed... URL: From Samuel.Gougeon at univ-lemans.fr Sat Jun 25 21:35:47 2011 From: Samuel.Gougeon at univ-lemans.fr (Samuel GOUGEON) Date: Sat, 25 Jun 2011 21:35:47 +0200 Subject: [scilab-Users] Drawing Y-axis in graph In-Reply-To: <1309030407.66843.YahooMailNeo@web45516.mail.sp1.yahoo.com> References: <1309024905.23775.YahooMailNeo@web45505.mail.sp1.yahoo.com> <1309028666.18229.YahooMailNeo@web45507.mail.sp1.yahoo.com> <4E06360C.3080607@univ-lemans.fr> <1309030407.66843.YahooMailNeo@web45516.mail.sp1.yahoo.com> Message-ID: <4E063893.1040203@univ-lemans.fr> ----- Message d'origine ----- De : Prof. Dr. Reinaldo Golmia Dante Date : 25/06/2011 21:33: > I would like to have both. So you may use the following: drawaxis(y=y_inicial:0.2:y_final,x=0,dir='r',tics='v',sub_int=2); Best regards Samuel -------------- next part -------------- An HTML attachment was scrubbed... URL: From sumit.adhikari at gmail.com Sat Jun 25 21:37:24 2011 From: sumit.adhikari at gmail.com (Sumit Adhikari) Date: Sat, 25 Jun 2011 21:37:24 +0200 Subject: [scilab-Users] Drawing Y-axis in graph In-Reply-To: <4E063893.1040203@univ-lemans.fr> References: <1309024905.23775.YahooMailNeo@web45505.mail.sp1.yahoo.com> <1309028666.18229.YahooMailNeo@web45507.mail.sp1.yahoo.com> <4E06360C.3080607@univ-lemans.fr> <1309030407.66843.YahooMailNeo@web45516.mail.sp1.yahoo.com> <4E063893.1040203@univ-lemans.fr> Message-ID: I hope you want like as attached! On Sat, Jun 25, 2011 at 9:35 PM, Samuel GOUGEON < Samuel.Gougeon at univ-lemans.fr> wrote: > ** > ----- Message d'origine ----- > De : Prof. Dr. Reinaldo Golmia Dante > Date : 25/06/2011 21:33: > > I would like to have both. > > So you may use the following: > > drawaxis(y=y_inicial:0.2:y_final,x=0,dir='r',tics='v',sub_int=2); > > Best regards > Samuel > -- Sumit Adhikari, Institute of Computer Technology, Faculty of Electrical Engineering, Vienna University of Technology, Gu?hausstra?e 27-29,1040 Vienna -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: xyaxis.pdf Type: application/pdf Size: 3463 bytes Desc: not available URL: From Samuel.Gougeon at univ-lemans.fr Sat Jun 25 21:39:37 2011 From: Samuel.Gougeon at univ-lemans.fr (Samuel GOUGEON) Date: Sat, 25 Jun 2011 21:39:37 +0200 Subject: [scilab-Users] Drawing Y-axis in graph In-Reply-To: <1309030407.66843.YahooMailNeo@web45516.mail.sp1.yahoo.com> References: <1309024905.23775.YahooMailNeo@web45505.mail.sp1.yahoo.com> <1309028666.18229.YahooMailNeo@web45507.mail.sp1.yahoo.com> <4E06360C.3080607@univ-lemans.fr> <1309030407.66843.YahooMailNeo@web45516.mail.sp1.yahoo.com> Message-ID: <4E063979.5080505@univ-lemans.fr> ----- Message d'origine ----- De : Prof. Dr. Reinaldo Golmia Dante Date : 25/06/2011 21:33: > I would like to have both. > Some students have difficult to understand graphs using only Y-axis on the > corner. For that reason, > it is interesting to have Y-axis at x = 0. But you can also use grids instead: xgrid(color("grey")) This may be clear enough for students Samuel -------------- next part -------------- An HTML attachment was scrubbed... URL: From tiraduvidascefet at yahoo.com Sat Jun 25 22:22:25 2011 From: tiraduvidascefet at yahoo.com (Prof. Dr. Reinaldo Golmia Dante) Date: Sat, 25 Jun 2011 13:22:25 -0700 (PDT) Subject: [scilab-Users] Drawing Y-axis in graph In-Reply-To: <4E063979.5080505@univ-lemans.fr> References: <1309024905.23775.YahooMailNeo@web45505.mail.sp1.yahoo.com> <1309028666.18229.YahooMailNeo@web45507.mail.sp1.yahoo.com> <4E06360C.3080607@univ-lemans.fr> <1309030407.66843.YahooMailNeo@web45516.mail.sp1.yahoo.com> <4E063979.5080505@univ-lemans.fr> Message-ID: <1309033345.94393.YahooMailNeo@web45501.mail.sp1.yahoo.com> wow .. good suggestion !!? ? Samuel, ? do you know why the Y-axis at x = 0 doesn't cover the range (y_inicial, y_final) ? ? If you run the following scrip you will see that the Y-axis goes until 0.1 ! I have no idea ! ? function f=funcao(x) f = 2*x*exp(-x^2); endfunction x_inicial = -4; x_final = 4; 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) 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='r',tics='v'); // Here Y-axis displays legend ( "2*x*exp(-x^2)" ); ? ? Tnx Reinaldo. ?From: Samuel GOUGEON To: users at lists.scilab.org Sent: Saturday, June 25, 2011 4:39 PM Subject: Re: [scilab-Users] Drawing Y-axis in graph ----- Message d'origine ----- De : Prof. Dr. Reinaldo Golmia Dante Date : 25/06/2011 21:33: I would like to have both. >? >Some students have difficult to understand graphs using only Y-axis on the corner. For that reason, >it is interesting to have Y-axis at x = 0. But you can also use grids instead: xgrid(color("grey")) This may be clear enough for students Samuel -------------- next part -------------- An HTML attachment was scrubbed... URL: From tiraduvidascefet at yahoo.com Sat Jun 25 22:44:07 2011 From: tiraduvidascefet at yahoo.com (Prof. Dr. Reinaldo Golmia Dante) Date: Sat, 25 Jun 2011 13:44:07 -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> <4E06360C.3080607@univ-lemans.fr> <1309030407.66843.YahooMailNeo@web45516.mail.sp1.yahoo.com> <4E063893.1040203@univ-lemans.fr> Message-ID: <1309034647.58399.YahooMailNeo@web45516.mail.sp1.yahoo.com> Very good .. how could you do it ? ? ?From: Sumit Adhikari To: users at lists.scilab.org Sent: Saturday, June 25, 2011 4:37 PM Subject: Re: [scilab-Users] Drawing Y-axis in graph I hope you want like as attached! On Sat, Jun 25, 2011 at 9:35 PM, Samuel GOUGEON wrote: >----- Message d'origine ----- >De : Prof. Dr. Reinaldo Golmia Dante >Date : 25/06/2011 21:33: >I would like to have both. So you may use the following: > >drawaxis(y=y_inicial:0.2:y_final,x=0,dir='r',tics='v',sub_int=2); > >Best regards >Samuel > -- Sumit Adhikari, Institute of Computer Technology, Faculty of Electrical Engineering, Vienna University of Technology, Gu?hausstra?e 27-29,1040 Vienna -------------- next part -------------- An HTML attachment was scrubbed... URL: From mathieu.dubois at limsi.fr Sun Jun 26 11:51:12 2011 From: mathieu.dubois at limsi.fr (Mathieu Dubois) Date: Sun, 26 Jun 2011 11:51:12 +0200 Subject: [scilab-Users] Re: using wget in scilab In-Reply-To: <1308953553377-3106501.post@n3.nabble.com> References: <1308936151288-3105289.post@n3.nabble.com> <1308936800.15024.17.camel@Calixte-Dell> <4E04EC3C.2010201@limsi.fr> <1308953553377-3106501.post@n3.nabble.com> Message-ID: <9ed606ab4a9daf0d5a6e31fc862313f0@limsi.fr> Sorry I was away from my mail yesterday, On Fri, 24 Jun 2011 15:12:33 -0700 (PDT), lukeaarond wrote: > *Calixte:* > I tried your code, but changed the directory to a folder on my > computer > because Scilab said that 'cd: cannot go to directory /tmp' > my code, with the new directory is: > > mydir='C:\Users\luke-rond\Documents\Molecular Evolution\Codes\URL > Access\4 > wget'; > cd(mydir); > unix('wget http://www.ncbi.nlm.nih.gov/nuccore/NM_000419'); > ii=find(ls(mydir)=='findme.txt') > > ii is set to an empty array, meaning that 'findme.txt' was not found. > A > possible reason, though doubtful, could that it is tryingt to save > the file > where I do not have write authorization. However, I assume the file > should > save to my current directory which I do have write authorization to. > > When it 'worked' for you, what happened? did it save the file on your > computer? where? > > *Mathieu:* > > That sounds like a good plan. I am an amateur when it comes to unix. > How > would I start Scilab from a shell? > Very simple: you open a terminal emulator (assuming you are under gnome it's somewhere in Applications->Accesories or Applications->System), enter scilab and press enter. Dont close the terminal emulator window because it will close scilab. You can also test the wget command in this shell (before starting scilab). > Also, what do you mean by host instead of unix? > 'host' is another scilab command to execute external commands. > Thank you both for your help > > -- > View this message in context: > > http://mailinglists.scilab.org/using-wget-in-scilab-tp3105289p3106501.html > Sent from the Scilab users - Mailing Lists Archives mailing list > archive at Nabble.com. From coolnish2k at hotmail.com Mon Jun 27 18:55:37 2011 From: coolnish2k at hotmail.com (nishnish) Date: Mon, 27 Jun 2011 09:55:37 -0700 (PDT) Subject: Problems with or(A>B,"r") Message-ID: <1309193737921-3114441.post@n3.nabble.com> A = 1. 2. 7. 6. 9. 8. B = 4. 5. 6. 7. 8. 9. or(A>B,"r") ans = F T T could any1 kindly explain what the last part means ? thanks ! -- View this message in context: http://mailinglists.scilab.org/Problems-with-or-A-B-r-tp3114441p3114441.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From Samuel.Gougeon at univ-lemans.fr Mon Jun 27 19:02:33 2011 From: Samuel.Gougeon at univ-lemans.fr (Samuel GOUGEON) Date: Mon, 27 Jun 2011 19:02:33 +0200 Subject: [scilab-Users] Problems with or(A>B,"r") In-Reply-To: <1309193737921-3114441.post@n3.nabble.com> References: <1309193737921-3114441.post@n3.nabble.com> Message-ID: <4E08B7A9.9050906@univ-lemans.fr> ----- Message d'origine ----- De : nishnish Date : 27/06/2011 18:55: > A = > 1. 2. 7. > 6. 9. 8. > > B = > 4. 5. 6. > 7. 8. 9. > > > or(A>B,"r") > ans = > F T T > > could any1 kindly explain what the last part means ? thanks ! or() is applied over all rows of each column of the boolean result A>B, giving finally a boolean *r*ow (hence "r") -------------- next part -------------- An HTML attachment was scrubbed... URL: From denis.crete at thalesgroup.com Mon Jun 27 19:03:53 2011 From: denis.crete at thalesgroup.com (CRETE Denis) Date: Mon, 27 Jun 2011 19:03:53 +0200 Subject: [scilab-Users] Problems with or(A>B,"r") In-Reply-To: <1309193737921-3114441.post@n3.nabble.com> References: <1309193737921-3114441.post@n3.nabble.com> Message-ID: <25846_1309194245_4E08B805_25846_18853_1_908CBC9017354841B2F32BBEC70A05A101C355E43506@THSONEA01CMS01P.one.grp> A(1,1)>B(1,1) or A(2,1)>B(2,1) ? F A(1,2)>B(1,2) or A(2,2)>B(2,2) ? T because 9>8 A(1,3)>B(1,3) or A(2,3)>B(2,3) ? T because 7>6 Regards Denis -----Message d'origine----- De?: nishnish [mailto:coolnish2k at hotmail.com] Envoy??: lundi 27 juin 2011 18:56 ??: users at lists.scilab.org Objet?: [scilab-Users] Problems with or(A>B,"r") A = 1. 2. 7. 6. 9. 8. B = 4. 5. 6. 7. 8. 9. or(A>B,"r") ans = F T T could any1 kindly explain what the last part means ? thanks ! -- View this message in context: http://mailinglists.scilab.org/Problems-with-or-A-B-r-tp3114441p3114441.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From coolnish2k at hotmail.com Mon Jun 27 19:35:47 2011 From: coolnish2k at hotmail.com (nishnish) Date: Mon, 27 Jun 2011 10:35:47 -0700 (PDT) Subject: Problems with or(A>B,"r") In-Reply-To: <25846_1309194245_4E08B805_25846_18853_1_908CBC9017354841B2F32BBEC70A05A101C355E43506@THSONEA01CMS01P.one.grp> References: <1309193737921-3114441.post@n3.nabble.com> <25846_1309194245_4E08B805_25846_18853_1_908CBC9017354841B2F32BBEC70A05A101C355E43506@THSONEA01CMS01P.one.grp> Message-ID: <1309196147607-3114580.post@n3.nabble.com> oh wow ! got it now .. thanks alot Denis ! -- View this message in context: http://mailinglists.scilab.org/Problems-with-or-A-B-r-tp3114441p3114580.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From coolnish2k at hotmail.com Mon Jun 27 19:36:18 2011 From: coolnish2k at hotmail.com (nishnish) Date: Mon, 27 Jun 2011 10:36:18 -0700 (PDT) Subject: Problems with or(A>B,"r") In-Reply-To: <4E08B7A9.9050906@univ-lemans.fr> References: <1309193737921-3114441.post@n3.nabble.com> <4E08B7A9.9050906@univ-lemans.fr> Message-ID: <1309196178340-3114583.post@n3.nabble.com> i got it now !! thanks alot Samuel ! -- View this message in context: http://mailinglists.scilab.org/Problems-with-or-A-B-r-tp3114441p3114583.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From lukeaarond at gmail.com Mon Jun 27 19:51:56 2011 From: lukeaarond at gmail.com (lukeaarond) Date: Mon, 27 Jun 2011 10:51:56 -0700 (PDT) Subject: using wget in scilab 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: <1309197116988-3114641.post@n3.nabble.com> I forgot to mention that I am using a Windows 7 operating system, not Linux. Can I still execute commands like UNIX() or HOST() on a Windows 7 OS? Thank you. -- View this message in context: http://mailinglists.scilab.org/using-wget-in-scilab-tp3105289p3114641.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From stustd at gmail.com Tue Jun 28 10:42:49 2011 From: stustd at gmail.com (Burley) Date: Tue, 28 Jun 2011 01:42:49 -0700 (PDT) Subject: JVM libhdf5 problem: almost crash [SOLVED] In-Reply-To: <1308916373251-3103764.post@n3.nabble.com> References: <1308916373251-3103764.post@n3.nabble.com> Message-ID: <1309250569691-3117052.post@n3.nabble.com> Solved: latest branch will do it: http://forge.scilab.org/index.php/p/xcos-mbdyn/source/tree/HEAD Thanks for support. -- View this message in context: http://mailinglists.scilab.org/JVM-libhdf5-problem-almost-crash-tp3103764p3117052.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From lukeaarond at gmail.com Tue Jun 28 23:02:54 2011 From: lukeaarond at gmail.com (lukeaarond) Date: Tue, 28 Jun 2011 14:02:54 -0700 (PDT) Subject: using wget in scilab In-Reply-To: <1309197116988-3114641.post@n3.nabble.com> 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> <1309197116988-3114641.post@n3.nabble.com> Message-ID: <1309294974889-3119423.post@n3.nabble.com> Thank you all for your help. I realized that my main problem was that I did not have the wget executable downloaded, therefore unix function in Scilab did not know how to execute the wget command. For all of those people who are reading this post with similar problems and wanting to know the answer here is what we did in Windows 7: *download the wget.exe file from http://users.ugent.be/~bpuype/wget/ *save it in C:\Windows *set the system path to C:\Windows. setting the path is explained here (though is slightly different for different computers) http://geekswithblogs.net/renso/archive/2009/10/21/how-to-set-the-windows-path-in-windows-7.aspx *execute unix('wget -O findme.txt http://www.ncbi.nlm.nih.gov/nuccore/NM_000419') in scilab. findme.txt should be saved into your current directory. Thank you again for all of your help -- View this message in context: http://mailinglists.scilab.org/using-wget-in-scilab-tp3105289p3119423.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From arawak1 at yahoo.com Wed Jun 29 05:02:02 2011 From: arawak1 at yahoo.com (arawak1) Date: Tue, 28 Jun 2011 20:02:02 -0700 (PDT) Subject: Scilab crashes in Snow Leopard Message-ID: <1309316522206-3120238.post@n3.nabble.com> Downloaded scilab-5.3.2.dmg; installed it but it crashes repeatedly with the following message 'Scilab quit unexpectedly'. There is a lengthy error message transmitted to Apple; it follows below. Does anyone have a clue as to what is wrong? ---------------------------------------- Process: scilab-bin [851] 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 [814] Date/Time: 2011-06-28 22:59:53.746 -0400 OS Version: Mac OS X 10.6.8 (10K540) Report Version: 6 Interval Since Last Report: 19057 sec Crashes Since Last Report: 12 Per-App Interval Since Last Report: 23 sec Per-App Crashes Since Last Report: 12 Anonymous UUID: 331D1FEB-C83C-4B52-9B9D-B8CA074D175B 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 0x00007fff87b6bd7a mach_msg_trap + 10 1 libSystem.B.dylib 0x00007fff87b6c3ed mach_msg + 59 2 com.apple.CoreFoundation 0x00007fff89746932 __CFRunLoopRun + 1698 3 com.apple.CoreFoundation 0x00007fff89745dbf CFRunLoopRunSpecific + 575 4 com.apple.CoreFoundation 0x00007fff89745b46 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 0x00007fff87bb61b0 _longjmp + 48 Thread 2: Dispatch queue: com.apple.libdispatch-manager 0 libSystem.B.dylib 0x00007fff87b84c0a kevent + 10 1 libSystem.B.dylib 0x00007fff87b86add _dispatch_mgr_invoke + 154 2 libSystem.B.dylib 0x00007fff87b867b4 _dispatch_queue_invoke + 185 3 libSystem.B.dylib 0x00007fff87b862de _dispatch_worker_thread2 + 252 4 libSystem.B.dylib 0x00007fff87b85c08 _pthread_wqthread + 353 5 libSystem.B.dylib 0x00007fff87b85aa5 start_wqthread + 13 Thread 3: 0 libSystem.B.dylib 0x00007fff87b85a2a __workq_kernreturn + 10 1 libSystem.B.dylib 0x00007fff87b85e3c _pthread_wqthread + 917 2 libSystem.B.dylib 0x00007fff87b85aa5 start_wqthread + 13 Thread 1 crashed with X86 Thread State (64-bit): rax: 0x0000000000000001 rbx: 0x0000000000000000 rcx: 0x00007fff87bcc1da rdx: 0x0000000000000000 rdi: 0x00000001000d0b00 rsi: 0x0000000000000001 rbp: 0x0000000000000000 rsp: 0x0000000000000000 r8: 0x0000000102b53a00 r9: 0x000000000000000c r10: 0x00007fff87bb60fa r11: 0x0000000000000246 r12: 0x0000000000000000 r13: 0x0000000000000000 r14: 0x0000000000000000 r15: 0x0000000000000000 rip: 0x00007fff87bb61b0 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 0x102bf1000 - 0x102bf9ff7 libverify.dylib 1.0 (1.0) <155BFCD9-BBA0-C03B-E411-1421586F595F> /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries/libverify.dylib 0x102fc3000 - 0x102fe3ff7 libjava.jnilib ??? (???) /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries/libjava.jnilib 0x104086000 - 0x104091fff JavaNativeFoundation ??? (???) /System/Library/Frameworks/JavaVM.framework/Versions/A/Frameworks/JavaNativeFoundation.framework/Versions/A/JavaNativeFoundation 0x10409c000 - 0x1040a3fff libjvmlinkage.dylib ??? (???) <8F397A50-C3FF-DAE8-D0C2-86EBC59D7E7C> /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries/libjvmlinkage.dylib 0x7fff5fc00000 - 0x7fff5fc3bdef dyld 132.1 (???) <69130DA3-7CB3-54C8-ABC5-423DECDD2AF7> /usr/lib/dyld 0x7fff8003b000 - 0x7fff8003cff7 com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent 0x7fff8003d000 - 0x7fff800f3ff7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib 0x7fff802d3000 - 0x7fff803f2fe7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <14115D29-432B-CF02-6B24-A60CC533A09E> /usr/lib/libcrypto.0.9.8.dylib 0x7fff80479000 - 0x7fff80513fe7 com.apple.ApplicationServices.ATS 275.16 (???) <4B70A2FC-1902-5F27-5C3B-5C78C283C6EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x7fff80514000 - 0x7fff80529ff7 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 0x7fff805e5000 - 0x7fff805f4fff com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS 0x7fff805f5000 - 0x7fff8062ffff libcups.2.dylib 2.8.0 (compatibility 2.0.0) <7982734A-B66B-44AA-DEEC-364D2C10009B> /usr/lib/libcups.2.dylib 0x7fff80637000 - 0x7fff80935fff com.apple.HIToolbox 1.6.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 0x7fff80936000 - 0x7fff80936ff7 com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 0x7fff80b1e000 - 0x7fff80b3ffff libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <9F322F47-0584-CB7D-5B73-9EBD670851CD> /usr/lib/libresolv.9.dylib 0x7fff80b4f000 - 0x7fff80b5aff7 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 0x7fff80b5b000 - 0x7fff80baaff7 com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <01B370FB-D524-F660-3826-E85B7F0D85CD> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer 0x7fff80bab000 - 0x7fff80c0bfe7 com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x7fff80c4a000 - 0x7fff80c50ff7 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 0x7fff80e94000 - 0x7fff80eb4ff7 com.apple.DirectoryService.Framework 3.6 (621.11) /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService 0x7fff81428000 - 0x7fff81428ff7 com.apple.CoreServices 44 (44) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x7fff8146b000 - 0x7fff814b7fff libauto.dylib ??? (???) /usr/lib/libauto.dylib 0x7fff814d1000 - 0x7fff81556ff7 com.apple.print.framework.PrintCore 6.3 (312.7) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 0x7fff81557000 - 0x7fff8157afff com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL 0x7fff81664000 - 0x7fff816acff7 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 0x7fff8183e000 - 0x7fff818fffff libFontParser.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib 0x7fff8190c000 - 0x7fff81acaff7 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 0x7fff81acb000 - 0x7fff81af0ff7 com.apple.CoreVideo 1.6.2 (45.6) /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0x7fff81af1000 - 0x7fff824ebff7 com.apple.AppKit 6.6.8 (1038.36) <4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x7fff82569000 - 0x7fff8256cff7 libCoreVMClient.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib 0x7fff8256d000 - 0x7fff825ebff7 com.apple.CoreText 151.10 (???) <54961997-55D8-DC0F-2634-674E452D5A8E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText 0x7fff826b8000 - 0x7fff8293afe7 com.apple.Foundation 6.6.7 (751.62) <6F2A5BBF-6990-D561-2928-AD61E94036D9> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x7fff835bf000 - 0x7fff8364ffff 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 0x7fff83694000 - 0x7fff836aafef libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib 0x7fff836ab000 - 0x7fff83760fe7 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 0x7fff837a6000 - 0x7fff83856fff edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 0x7fff83d06000 - 0x7fff83d70fe7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 0x7fff83d71000 - 0x7fff83d77ff7 IOSurface ??? (???) <6AF28EC1-BCC4-9F65-AF7D-ABE60B91072A> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface 0x7fff83d78000 - 0x7fff83d86ff7 libkxld.dylib ??? (???) <8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib 0x7fff83d87000 - 0x7fff83d8cfff libGFXShared.dylib ??? (???) <1D0D3531-9561-632C-D620-1A8652BEF5BC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib 0x7fff83d8f000 - 0x7fff84018ff7 com.apple.security 6.1.2 (55002) <4419AFFC-DAE7-873E-6A7D-5C9A5A4497A6> /System/Library/Frameworks/Security.framework/Versions/A/Security 0x7fff84064000 - 0x7fff840b9ff7 com.apple.framework.familycontrols 2.0.2 (2020) /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls 0x7fff843a9000 - 0x7fff843e4fff 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 0x7fff844a6000 - 0x7fff8458bfef com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 0x7fff84597000 - 0x7fff84755fff libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <4274FC73-A257-3A56-4293-5968F3428854> /usr/lib/libicucore.A.dylib 0x7fff84756000 - 0x7fff84af3fe7 com.apple.QuartzCore 1.6.3 (227.37) <16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x7fff84af4000 - 0x7fff84b73fe7 com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x7fff84b74000 - 0x7fff84cb2fff com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x7fff84ee4000 - 0x7fff84f15fff libGLImage.dylib ??? (???) <7F102A07-E4FB-9F52-B2F6-4E2D2383CA13> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 0x7fff851b1000 - 0x7fff8526efff com.apple.CoreServices.OSServices 359 (359) <8F509D8D-4C94-9A1C-3A87-5B775D9F6075> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 0x7fff853a8000 - 0x7fff853c5ff7 libPng.dylib ??? (???) <4815A8F2-24A0-E783-8A5A-7B4959F562D7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 0x7fff853c6000 - 0x7fff853c6ff7 com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib 0x7fff854bd000 - 0x7fff85506fef libGLU.dylib ??? (???) <1C050088-4AB2-2BC2-62E6-C969F925A945> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x7fff857b8000 - 0x7fff8580bff7 com.apple.HIServices 1.8.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 0x7fff85aa1000 - 0x7fff85aebff7 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 0x7fff85b61000 - 0x7fff85b61ff7 com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x7fff85b72000 - 0x7fff85c33fef com.apple.ColorSync 4.6.6 (4.6.6) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync 0x7fff85c34000 - 0x7fff85c46fe7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib 0x7fff85c47000 - 0x7fff85c48fff liblangid.dylib ??? (???) /usr/lib/liblangid.dylib 0x7fff85c49000 - 0x7fff85cd5fef SecurityFoundation ??? (???) <8A74D45E-9FE9-DD58-42F5-C7474FFDD0C1> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation 0x7fff85cf9000 - 0x7fff85d40ff7 com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 0x7fff85d41000 - 0x7fff85e15fe7 com.apple.CFNetwork 454.12.4 (454.12.4) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x7fff86092000 - 0x7fff860a6fff libGL.dylib ??? (???) <2ECE3B0F-39E1-3938-BF27-7205C6D0358B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x7fff8613e000 - 0x7fff86144ff7 com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x7fff86145000 - 0x7fff861e5fff com.apple.LaunchServices 362.3 (362.3) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 0x7fff8629f000 - 0x7fff8631cfef libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib 0x7fff8632c000 - 0x7fff863e5fff libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib 0x7fff863e6000 - 0x7fff8671afef 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 0x7fff8671b000 - 0x7fff8671fff7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib 0x7fff86887000 - 0x7fff868b2ff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <8AB4CA9E-435A-33DA-7041-904BA7FA11D5> /usr/lib/libxslt.1.dylib 0x7fff868b3000 - 0x7fff868f4fff com.apple.SystemConfiguration 1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 0x7fff868f5000 - 0x7fff868fafff libGIF.dylib ??? (???) <95443F88-7D4C-1DEE-A323-A70F7A1B4B0F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x7fff87337000 - 0x7fff87338ff7 com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <53299948-2554-0F8F-7501-04B34E49F6CF> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x7fff877e3000 - 0x7fff877e3ff7 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 0x7fff877e4000 - 0x7fff877e6fff libRadiance.dylib ??? (???) <76C1B129-6F25-E43C-1498-B1B88B37163B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib 0x7fff87917000 - 0x7fff8792bff7 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 0x7fff87b43000 - 0x7fff87b6aff7 libJPEG.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x7fff87b6b000 - 0x7fff87d2cfef libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib 0x7fff87d2d000 - 0x7fff87e44fef libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <1B27AFDD-DF87-2009-170E-C129E1572E8B> /usr/lib/libxml2.2.dylib 0x7fff87e45000 - 0x7fff87f5ffef libGLProgrammability.dylib ??? (???) <8A4B86E3-0FA7-8684-2EF2-C5F8079428DB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib 0x7fff886f5000 - 0x7fff8882afff com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x7fff8882b000 - 0x7fff88853fff com.apple.DictionaryServices 1.1.2 (1.1.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices 0x7fff88854000 - 0x7fff8885bfff com.apple.OpenDirectory 10.6 (10.6) <4FF6AD25-0916-B21C-9E88-2CC42D90EAC7> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory 0x7fff8885c000 - 0x7fff8889dfef com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 0x7fff8889e000 - 0x7fff888b7fff com.apple.CFOpenDirectory 10.6 (10.6) <401557B1-C6D1-7E1A-0D7E-941715C37BFA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory 0x7fff888b8000 - 0x7fff888b8ff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x7fff88979000 - 0x7fff8898ffe7 com.apple.MultitouchSupport.framework 207.11 (207.11) <8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport 0x7fff889e8000 - 0x7fff88ac5fff com.apple.vImage 4.1 (4.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 0x7fff88ac6000 - 0x7fff891c2ff7 com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x7fff89351000 - 0x7fff893a0fef libTIFF.dylib ??? (???) <5DE9F066-9B64-CBE4-976A-CC7B8DD3C31A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 0x7fff893a6000 - 0x7fff893b5fef com.apple.opengl 1.6.13 (1.6.13) <516098B3-4517-8A55-64BB-195CDAA5334D> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 0x7fff896fa000 - 0x7fff89871fe7 com.apple.CoreFoundation 6.6.5 (550.43) <31A1C118-AD96-0A11-8BDF-BD55B9940EDC> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x7fffffe00000 - 0x7fffffe01fff libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib Model: iMac7,1, BootROM IM71.007A.B03, 2 processors, Intel Core 2 Duo, 2 GHz, 2 GB, SMC 1.20f4 Graphics: ATI Radeon HD 2400 XT, ATI,RadeonHD2400, PCIe, 128 MB Memory Module: global_name AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x88), 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: WDC WD2500AAJS-40VWA0, 232.89 GB Parallel ATA Device: MATSHITADVD-R UJ-875 USB Device: Keyboard Hub, 0x05ac (Apple Inc.), 0x1006, 0xfa400000 / 2 USB Device: Apple Keyboard, 0x05ac (Apple Inc.), 0x0220, 0xfa420000 / 3 USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8502, 0xfd400000 / 2 USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x5d100000 / 2 USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8206, 0x1a100000 / 2 -- View this message in context: http://mailinglists.scilab.org/Scilab-crashes-in-Snow-Leopard-tp3120238p3120238.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From arawak1 at yahoo.com Wed Jun 29 03:01:24 2011 From: arawak1 at yahoo.com (Ronald Francis) Date: Tue, 28 Jun 2011 21:01:24 -0400 Subject: Installation Message-ID: <5DDC2F1A-314E-4B2D-836E-E77237095487@yahoo.com> Downloaded Scilab 5.3.2 (scilab-5.3.2.dmg for Snow Leopard] and it will not install. Returns with 'Scilab quit unexpectedly' repeatedly and the following message. Can any one help. Mac version is 10.6.8 ------------------------------------------------------------------ Process: scilab-bin [3122] 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 [3085] Date/Time: 2011-06-28 20:55:38.310 -0400 OS Version: Mac OS X 10.6.8 (10K540) Report Version: 6 Interval Since Last Report: 11651 sec Crashes Since Last Report: 9 Per-App Interval Since Last Report: 20 sec Per-App Crashes Since Last Report: 9 Anonymous UUID: 331D1FEB-C83C-4B52-9B9D-B8CA074D175B 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 0x00007fff87b6bd7a mach_msg_trap + 10 1 libSystem.B.dylib 0x00007fff87b6c3ed mach_msg + 59 2 com.apple.CoreFoundation 0x00007fff89746932 __CFRunLoopRun + 1698 3 com.apple.CoreFoundation 0x00007fff89745dbf CFRunLoopRunSpecific + 575 4 com.apple.CoreFoundation 0x00007fff89745b46 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 0x00007fff87bb61b0 _longjmp + 48 Thread 2: Dispatch queue: com.apple.libdispatch-manager 0 libSystem.B.dylib 0x00007fff87b84c0a kevent + 10 1 libSystem.B.dylib 0x00007fff87b86add _dispatch_mgr_invoke + 154 2 libSystem.B.dylib 0x00007fff87b867b4 _dispatch_queue_invoke + 185 3 libSystem.B.dylib 0x00007fff87b862de _dispatch_worker_thread2 + 252 4 libSystem.B.dylib 0x00007fff87b85c08 _pthread_wqthread + 353 5 libSystem.B.dylib 0x00007fff87b85aa5 start_wqthread + 13 Thread 3: 0 libSystem.B.dylib 0x00007fff87b85a2a __workq_kernreturn + 10 1 libSystem.B.dylib 0x00007fff87b85e3c _pthread_wqthread + 917 2 libSystem.B.dylib 0x00007fff87b85aa5 start_wqthread + 13 Thread 1 crashed with X86 Thread State (64-bit): rax: 0x0000000000000001 rbx: 0x0000000000000000 rcx: 0x00007fff87bcc1da rdx: 0x0000000000000000 rdi: 0x00000001000d0b00 rsi: 0x0000000000000001 rbp: 0x0000000000000000 rsp: 0x0000000000000000 r8: 0x0000000102b53a00 r9: 0x0000000000000013 r10: 0x00007fff87bb60fa r11: 0x0000000000000246 r12: 0x0000000000000000 r13: 0x0000000000000000 r14: 0x0000000000000000 r15: 0x0000000000000000 rip: 0x00007fff87bb61b0 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 0x102bf1000 - 0x102bf9ff7 libverify.dylib 1.0 (1.0) <155BFCD9-BBA0-C03B-E411-1421586F595F> /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries/libverify.dylib 0x102fc3000 - 0x102fe3ff7 libjava.jnilib ??? (???) /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries/libjava.jnilib 0x104086000 - 0x104091fff JavaNativeFoundation ??? (???) /System/Library/Frameworks/JavaVM.framework/Versions/A/Frameworks/JavaNativeFoundation.framework/Versions/A/JavaNativeFoundation 0x10409c000 - 0x1040a3fff libjvmlinkage.dylib ??? (???) <8F397A50-C3FF-DAE8-D0C2-86EBC59D7E7C> /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries/libjvmlinkage.dylib 0x7fff5fc00000 - 0x7fff5fc3bdef dyld 132.1 (???) <69130DA3-7CB3-54C8-ABC5-423DECDD2AF7> /usr/lib/dyld 0x7fff8003b000 - 0x7fff8003cff7 com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent 0x7fff8003d000 - 0x7fff800f3ff7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib 0x7fff802d3000 - 0x7fff803f2fe7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <14115D29-432B-CF02-6B24-A60CC533A09E> /usr/lib/libcrypto.0.9.8.dylib 0x7fff80479000 - 0x7fff80513fe7 com.apple.ApplicationServices.ATS 275.16 (???) <4B70A2FC-1902-5F27-5C3B-5C78C283C6EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x7fff80514000 - 0x7fff80529ff7 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 0x7fff805e5000 - 0x7fff805f4fff com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS 0x7fff805f5000 - 0x7fff8062ffff libcups.2.dylib 2.8.0 (compatibility 2.0.0) <7982734A-B66B-44AA-DEEC-364D2C10009B> /usr/lib/libcups.2.dylib 0x7fff80637000 - 0x7fff80935fff com.apple.HIToolbox 1.6.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 0x7fff80936000 - 0x7fff80936ff7 com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 0x7fff80b1e000 - 0x7fff80b3ffff libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <9F322F47-0584-CB7D-5B73-9EBD670851CD> /usr/lib/libresolv.9.dylib 0x7fff80b4f000 - 0x7fff80b5aff7 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 0x7fff80b5b000 - 0x7fff80baaff7 com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <01B370FB-D524-F660-3826-E85B7F0D85CD> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer 0x7fff80bab000 - 0x7fff80c0bfe7 com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x7fff80c4a000 - 0x7fff80c50ff7 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 0x7fff80e94000 - 0x7fff80eb4ff7 com.apple.DirectoryService.Framework 3.6 (621.11) /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService 0x7fff81428000 - 0x7fff81428ff7 com.apple.CoreServices 44 (44) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x7fff8146b000 - 0x7fff814b7fff libauto.dylib ??? (???) /usr/lib/libauto.dylib 0x7fff814d1000 - 0x7fff81556ff7 com.apple.print.framework.PrintCore 6.3 (312.7) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 0x7fff81557000 - 0x7fff8157afff com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL 0x7fff81664000 - 0x7fff816acff7 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 0x7fff8183e000 - 0x7fff818fffff libFontParser.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib 0x7fff8190c000 - 0x7fff81acaff7 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 0x7fff81acb000 - 0x7fff81af0ff7 com.apple.CoreVideo 1.6.2 (45.6) /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0x7fff81af1000 - 0x7fff824ebff7 com.apple.AppKit 6.6.8 (1038.36) <4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x7fff82569000 - 0x7fff8256cff7 libCoreVMClient.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib 0x7fff8256d000 - 0x7fff825ebff7 com.apple.CoreText 151.10 (???) <54961997-55D8-DC0F-2634-674E452D5A8E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText 0x7fff826b8000 - 0x7fff8293afe7 com.apple.Foundation 6.6.7 (751.62) <6F2A5BBF-6990-D561-2928-AD61E94036D9> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x7fff835bf000 - 0x7fff8364ffff 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 0x7fff83694000 - 0x7fff836aafef libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib 0x7fff836ab000 - 0x7fff83760fe7 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 0x7fff837a6000 - 0x7fff83856fff edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 0x7fff83d06000 - 0x7fff83d70fe7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 0x7fff83d71000 - 0x7fff83d77ff7 IOSurface ??? (???) <6AF28EC1-BCC4-9F65-AF7D-ABE60B91072A> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface 0x7fff83d78000 - 0x7fff83d86ff7 libkxld.dylib ??? (???) <8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib 0x7fff83d87000 - 0x7fff83d8cfff libGFXShared.dylib ??? (???) <1D0D3531-9561-632C-D620-1A8652BEF5BC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib 0x7fff83d8f000 - 0x7fff84018ff7 com.apple.security 6.1.2 (55002) <4419AFFC-DAE7-873E-6A7D-5C9A5A4497A6> /System/Library/Frameworks/Security.framework/Versions/A/Security 0x7fff84064000 - 0x7fff840b9ff7 com.apple.framework.familycontrols 2.0.2 (2020) /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls 0x7fff843a9000 - 0x7fff843e4fff 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 0x7fff844a6000 - 0x7fff8458bfef com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 0x7fff84597000 - 0x7fff84755fff libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <4274FC73-A257-3A56-4293-5968F3428854> /usr/lib/libicucore.A.dylib 0x7fff84756000 - 0x7fff84af3fe7 com.apple.QuartzCore 1.6.3 (227.37) <16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x7fff84af4000 - 0x7fff84b73fe7 com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x7fff84b74000 - 0x7fff84cb2fff com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x7fff84ee4000 - 0x7fff84f15fff libGLImage.dylib ??? (???) <7F102A07-E4FB-9F52-B2F6-4E2D2383CA13> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 0x7fff851b1000 - 0x7fff8526efff com.apple.CoreServices.OSServices 359 (359) <8F509D8D-4C94-9A1C-3A87-5B775D9F6075> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 0x7fff853a8000 - 0x7fff853c5ff7 libPng.dylib ??? (???) <4815A8F2-24A0-E783-8A5A-7B4959F562D7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 0x7fff853c6000 - 0x7fff853c6ff7 com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib 0x7fff854bd000 - 0x7fff85506fef libGLU.dylib ??? (???) <1C050088-4AB2-2BC2-62E6-C969F925A945> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x7fff857b8000 - 0x7fff8580bff7 com.apple.HIServices 1.8.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 0x7fff85aa1000 - 0x7fff85aebff7 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 0x7fff85b61000 - 0x7fff85b61ff7 com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x7fff85b72000 - 0x7fff85c33fef com.apple.ColorSync 4.6.6 (4.6.6) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync 0x7fff85c34000 - 0x7fff85c46fe7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib 0x7fff85c47000 - 0x7fff85c48fff liblangid.dylib ??? (???) /usr/lib/liblangid.dylib 0x7fff85c49000 - 0x7fff85cd5fef SecurityFoundation ??? (???) <8A74D45E-9FE9-DD58-42F5-C7474FFDD0C1> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation 0x7fff85cf9000 - 0x7fff85d40ff7 com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 0x7fff85d41000 - 0x7fff85e15fe7 com.apple.CFNetwork 454.12.4 (454.12.4) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x7fff86092000 - 0x7fff860a6fff libGL.dylib ??? (???) <2ECE3B0F-39E1-3938-BF27-7205C6D0358B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x7fff8613e000 - 0x7fff86144ff7 com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x7fff86145000 - 0x7fff861e5fff com.apple.LaunchServices 362.3 (362.3) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 0x7fff8629f000 - 0x7fff8631cfef libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib 0x7fff8632c000 - 0x7fff863e5fff libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib 0x7fff863e6000 - 0x7fff8671afef 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 0x7fff8671b000 - 0x7fff8671fff7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib 0x7fff86887000 - 0x7fff868b2ff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <8AB4CA9E-435A-33DA-7041-904BA7FA11D5> /usr/lib/libxslt.1.dylib 0x7fff868b3000 - 0x7fff868f4fff com.apple.SystemConfiguration 1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 0x7fff868f5000 - 0x7fff868fafff libGIF.dylib ??? (???) <95443F88-7D4C-1DEE-A323-A70F7A1B4B0F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x7fff87337000 - 0x7fff87338ff7 com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <53299948-2554-0F8F-7501-04B34E49F6CF> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x7fff877e3000 - 0x7fff877e3ff7 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 0x7fff877e4000 - 0x7fff877e6fff libRadiance.dylib ??? (???) <76C1B129-6F25-E43C-1498-B1B88B37163B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib 0x7fff87917000 - 0x7fff8792bff7 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 0x7fff87b43000 - 0x7fff87b6aff7 libJPEG.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x7fff87b6b000 - 0x7fff87d2cfef libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib 0x7fff87d2d000 - 0x7fff87e44fef libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <1B27AFDD-DF87-2009-170E-C129E1572E8B> /usr/lib/libxml2.2.dylib 0x7fff87e45000 - 0x7fff87f5ffef libGLProgrammability.dylib ??? (???) <8A4B86E3-0FA7-8684-2EF2-C5F8079428DB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib 0x7fff886f5000 - 0x7fff8882afff com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x7fff8882b000 - 0x7fff88853fff com.apple.DictionaryServices 1.1.2 (1.1.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices 0x7fff88854000 - 0x7fff8885bfff com.apple.OpenDirectory 10.6 (10.6) <4FF6AD25-0916-B21C-9E88-2CC42D90EAC7> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory 0x7fff8885c000 - 0x7fff8889dfef com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 0x7fff8889e000 - 0x7fff888b7fff com.apple.CFOpenDirectory 10.6 (10.6) <401557B1-C6D1-7E1A-0D7E-941715C37BFA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory 0x7fff888b8000 - 0x7fff888b8ff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x7fff88979000 - 0x7fff8898ffe7 com.apple.MultitouchSupport.framework 207.11 (207.11) <8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport 0x7fff889e8000 - 0x7fff88ac5fff com.apple.vImage 4.1 (4.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 0x7fff88ac6000 - 0x7fff891c2ff7 com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x7fff89351000 - 0x7fff893a0fef libTIFF.dylib ??? (???) <5DE9F066-9B64-CBE4-976A-CC7B8DD3C31A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 0x7fff893a6000 - 0x7fff893b5fef com.apple.opengl 1.6.13 (1.6.13) <516098B3-4517-8A55-64BB-195CDAA5334D> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 0x7fff896fa000 - 0x7fff89871fe7 com.apple.CoreFoundation 6.6.5 (550.43) <31A1C118-AD96-0A11-8BDF-BD55B9940EDC> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x7fffffe00000 - 0x7fffffe01fff libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib Model: iMac7,1, BootROM IM71.007A.B03, 2 processors, Intel Core 2 Duo, 2 GHz, 2 GB, SMC 1.20f4 Graphics: ATI Radeon HD 2400 XT, ATI,RadeonHD2400, PCIe, 128 MB Memory Module: global_name AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x88), 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: WDC WD2500AAJS-40VWA0, 232.89 GB Parallel ATA Device: MATSHITADVD-R UJ-875 USB Device: Keyboard Hub, 0x05ac (Apple Inc.), 0x1006, 0xfa400000 / 2 USB Device: Apple Keyboard, 0x05ac (Apple Inc.), 0x0220, 0xfa420000 / 3 USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8502, 0xfd400000 / 2 USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8206, 0x1a100000 / 2 USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x5d100000 / 2 ------------------------------------------------------------------ From ludo.wag at laposte.net Wed Jun 29 09:55:27 2011 From: ludo.wag at laposte.net (Orbeman) Date: Wed, 29 Jun 2011 00:55:27 -0700 (PDT) Subject: Touble with the installation of the toolbox SIVP Message-ID: <1309334127753-3120663.post@n3.nabble.com> Hello, I work with the version 5.3.2 of Scilab 64 bit. I've installed a C compiler with Mingw. But, I try to install SIVP and it appears an errors during the creation of the share library : !------------- Compile file common.c -------------- ! ! ! !x86_64-w64-mingw32-gcc.exe -c -DWIN32 -D_MSC_VER -DSTRICT -DFORDLL -I"C:/P! ! ROGRA~1/scilab-5.3.2/libs/MALLOC/includes" -I"C:/PROGRA~1/scilab-5.3.! ! 2/modules/core/includes" -I"C:/PROGRA~1/scilab-5.3.2/modules/api_scil! ! ab/includes" -I"C:/PROGRA~1/scilab-5.3.2/modules/call_scilab/includes! ! " -I"C:/PROGRA~1/scilab-5.3.2/modules/output_stream/includes" -I"C:/P! ! ROGRA~1/scilab-5.3.2/modules/jvm/includes" -I"C:/PROGRA~1/scilab-5.3.! ! 2/modules/localization/includes" -I"C:/PROGRA~1/scilab-5.3.2/modules/! ! dynamic_link/includes" -I"C:/PROGRA~1/scilab-5.3.2/modules/mexlib/inc! ! ludes" -I"C:/PROGRA~1/scilab-5.3.2/modules/time/includes" -I"C:/PROGR! ! A~1/scilab-5.3.2/modules/windows_tools/includes" -I"C:/PROGRA~1/scila! ! b-5.3.2/libs/f2c" -I"C:/PROGRA~1/scilab-5.3.2/libs/hashtable" -I"C:/P! ! ROGRA~1/scilab-5.3.2/libs/intl" -m64 -I"C:/Program Files/scilab-5.3.2! ! /contrib/sivp-0.5.3/sci_gateway/c/../../thirdparty/opencv/windows/inc! ! lude" common.c ! ! ! !In file included from common.c:21:0: ! ! ! !common.h:43:20: fatal error: cxcore.h: No such file or directory ! ! ! !compilation terminated. ! ! ! !make: *** [common.o] Error 1 ! !--error 10000 ilib_compile: Erreur lors de l'ex?cution Makelib. at line 76 of function ilib_compile called by : at line 107 of function ilib_build called by : at line 133 of function tbx_build_gateway called by : s , inter_cflags ) at line 98 of exec file called by : at line 13 of function tbx_builder called by : at line 49 of function tbx_builder_gateway_lang called by : tbx_builder_gateway_lang(languages, sci_gateway_dir); at line 6 of exec file called by : at line 13 of function tbx_builder called by : at line 32 of function tbx_builder_gateway called by : tbx_builder_gateway(toolbox_dir); at line 34 of exec file called by : I've trying all of the 5.x version. This message is generated with the most recent version : 5.3. Does anybody have a solution of this trouble ? Thank you ! -- View this message in context: http://mailinglists.scilab.org/Touble-with-the-installation-of-the-toolbox-SIVP-tp3120663p3120663.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From arawak1 at yahoo.com Thu Jun 30 05:01:57 2011 From: arawak1 at yahoo.com (Ronald Francis) Date: Wed, 29 Jun 2011 23:01:57 -0400 Subject: Scilab crashes in Mac OS X Version 10.6.8 Message-ID: Scilab 5.3.2 crashes in Snow Leopard with the message 'Scilab quit unespectedly'. I have previously posted the Problem Details and System Configuration. I need help! Thank You, raf From bruno.jofret at scilab.org Thu Jun 30 09:56:52 2011 From: bruno.jofret at scilab.org (Bruno JOFRET) Date: Thu, 30 Jun 2011 09:56:52 +0200 Subject: [scilab-Users] Scilab crashes in Mac OS X Version 10.6.8 In-Reply-To: References: Message-ID: <4E0C2C44.7020501@scilab.org> On 06/30/2011 05:01 AM, Ronald Francis wrote: > Scilab 5.3.2 crashes in Snow Leopard with the message 'Scilab quit unespectedly'. I have previously posted the Problem Details and System Configuration. I need help! > > Thank You, raf Hi, It seems update to Mac OS X 10.6.8 broke some features within java detection and JNI use (that were available/standard on previous OS X versions). We are working on it right now. Hope I'll be back soon on this channel with some scilab version working. Regards, -- Bruno JOFRET Software Architect The Scilab Consortium Digiteo Foundation Domaine de Voluceau Rocquencourt - B.P. 105 78153 Le Chesnay France Phone: +33.1.39.63.58.63 From hiren.patel at ganpatuniversity.ac.in Thu Jun 30 10:18:05 2011 From: hiren.patel at ganpatuniversity.ac.in (Hiren Patel) Date: Thu, 30 Jun 2011 13:48:05 +0530 Subject: query Message-ID: Dear sir, from the website of AICTE, I got your reference. your software is similar to Matlab. I am faculty in MBA department. Is there any module in your software which can be helpful to MBA students? for statisitcs, research methodology, operations research etc. regards -- Dr. Hiren J. Patel Assistant Professor, V. M. Patel Institute of Management, Ganpat University, Mehsana-Gandhinagar Highway, Kherva, Mehsana. -------------- next part -------------- An HTML attachment was scrubbed... URL: