[Scilab-users] functions in scilab which can provide the information of scilab script file

2013-09-03 Thread hilife5
I want to know, is there exist any functions in scilab which can provide the information of scilab script file. function1.sci is a script file and content of this script file is given below function y = function1 ( x ) y = 1 * function1_support ( x ) endfunction function y = function1_support ( x

Re: [Scilab-users] use of fsolve

2013-09-03 Thread omorr
Hello, If I understood you well, you are asking to solve a polynomial in more than one variable and to get all of the possible multiple solutions at once. As far as I know, there is no easy way to get all of this numerically. I do not believe there is a simple way to do that in Scilab as well (I w

Re: [Scilab-users] use of fsolve

2013-09-03 Thread Dang, Christophe
Hello, > De la part de Paul Carrico > Envoyé : mardi 3 septembre 2013 08:19 > > I feel there's a strategy in order to find all the solution but I > don't know (or I don't remember) how to proceed You've got the same kind of problems for optimisation, where you look for an absolute minimum and not

[Scilab-users] Xcos error

2013-09-03 Thread Kent Slaughter
If I try to drag any block into Xcos, I get "Unable to load block from..." as soon as the mouse moves after I drag. Any idea why? Thanks Kent ___ users mailing list users@lists.scilab.org http://lists.scilab.org/mailman/listinfo/users

Re: [Scilab-users] functions in scilab which can provide the information of scilab script file

2013-09-03 Thread Dang, Christophe
Hello, > De la part de hilife5 > Envoyé : mardi 3 septembre 2013 06:45 > > i want to know, is there any scilab function exist for getting the > information like function name, input parameter name and output > parameter name. If you know the function name, you can get informations with fun2str

Re: [Scilab-users] Xcos error

2013-09-03 Thread Paul BIGNIER
Hello, This error sometimes occur when you try to move too fast, or when you add blocks successively too rapidly. Try to slow down or empty your diagram before dragging the first block, and let us know how it works. Regards, Paul. On 09/03/2013 09:49 AM, Kent Slaughter wrote: If I try to d

Re: [Scilab-users] functions in scilab which can provide the information of scilab script file

2013-09-03 Thread hilife5
I didn't know the function name. when i am using listfunctions() call after executing the scilab script. then i am getting all the function that has been executed in scilab. Is there any way to get function names from the scilab script. -- View this message in context: http://mailinglists.scil

[Scilab-users] how to get list of object that are present in scilab script file

2013-09-03 Thread hilife5
I want to know is there exist any way to get the list of objects like variable names, matrices, plots that are present in scilab script file. Thanks -- View this message in context: http://mailinglists.scilab.org/how-to-get-list-of-object-that-are-present-in-scilab-script-file-tp4027336.htm

Re: [Scilab-users] how to get list of object that are present in scilab script file

2013-09-03 Thread Dang, Christophe
Hello, > De la part de hilife5 > Envoyé : mardi 3 septembre 2013 12:20 > > I want to know is there exist any way to get the list of objects like > variable names, matrices, plots that are present in scilab script > file. Does help_from_sci() fulfill your need? Regards -- Christophe Dang Ng

Re: [Scilab-users] Xcos error

2013-09-03 Thread Paul BIGNIER
A bug has been opened to deal with this issue: http://bugzilla.scilab.org/show_bug.cgi?id=12894 On 09/03/2013 09:49 AM, Kent Slaughter wrote: If I try to drag any block into Xcos, I get "Unable to load block from..." as soon as the mouse moves after I drag. Any idea why? Thanks Kent __

Re: [Scilab-users] how to get list of object that are present in scilab script file

2013-09-03 Thread Stéphane Mottelet
Le 03/09/13 17:27, Serge Steer a écrit : Le 03/09/2013 12:20, hilife5 a écrit : I want to know is there exist any way to get the list of objects like variable names, matrices, plots that are present in scilab script file. for script file, no but it is possible for functions using the macrovar f

Re: [Scilab-users] how to get list of object that are present in scilab script file

2013-09-03 Thread Serge Steer
Le 03/09/2013 12:20, hilife5 a écrit : I want to know is there exist any way to get the list of objects like variable names, matrices, plots that are present in scilab script file. for script file, no but it is possible for functions using the macrovar function Serge Steer Thanks -- View t

Re: [Scilab-users] how to get list of object that are present in scilab script file

2013-09-03 Thread Stéphane Mottelet
Le 03/09/13 17:27, Serge Steer a écrit : Le 03/09/2013 12:20, hilife5 a écrit : I want to know is there exist any way to get the list of objects like variable names, matrices, plots that are present in scilab script file. for script file, no but it is possible for functions using the macrovar f

[Scilab-users] scilab 6 - Does not start on Mac OS X 10.8.4

2013-09-03 Thread knobs
Hello, I have been running Scilab 5.4.1 on my Macbook Pro under ML 10.8.4 without any major issues. Today I tried Scilab 6 and I receive the errors listed below. The error states that a library is missing in the folder /sw/... I do not have any /sw/ directory on root? Does anyone know a simple

Re: [Scilab-users] scilab 6 - Does not start on Mac OS X 10.8.4

2013-09-03 Thread Adam Dershowitz
The /sw folder is where fink, the package manager, keeps all of its stuff. What the message below means is that the build that you are using includes the libcurl library. But, that library was built to search for libcares.2.dylib in /sw which you obviously don't have. I don't know an easy fix

Re: [Scilab-users] scilab 6 - Does not start on Mac OS X 10.8.4

2013-09-03 Thread knobs
Hi Adam Thank you for the quick reply! Well, I like to scilab 6 without installing anything else. I might address that to the developers. There are - unfortunately - no binaries of Fink for Mac OSX 10.8.4. I would need to install it from the source files. That seems to be straight, though, accor