Tagged Questions
Scilab is an open source, cross-platform numerical computational package and a high-level, numerically oriented programming language. It can be used for signal processing, statistical analysis, image enhancement, fluid dynamics simulations, numerical optimization, and modeling and simulation of explicit and implicit dynamical systems.
8
votes
3answers
877 views
what advantages MATLAB has over SCILAB and vice versa?
hello
i'm a computer systems engineering undergraduate student, i just want to know what advantages MATLAB has over SCILAB and vice versa other than that SCILAB is freeware.
i mean from a computer ...
3
votes
3answers
235 views
Faster projected-norm (quadratic-form, metric-matrix…) style computations
I need to perform lots of evaluations of the form
X(:,i)' * A * X(:,i) i = 1...n
where X(:,i) is a vector and A is a symmetric matrix. Ostensibly, I can either do this in a loop
for i=1:n
...
3
votes
2answers
2k views
Porting matlab functions to scilab. How to use symbolic?
I'm porting some matlab functions to scilab. The cool thing is that there is a conversion toolbox that make things very easy.
The problem is I did not find the counter part to the syms function, and ...
2
votes
1answer
80 views
Extract .mat data without matlab - tried scilab unsuccessfully
I've downloaded a data set that I am interested in. However, it is in .mat format and I do not have access to Matlab.
I've done some googling and it says I can open it in SciLab.
I tried a few ...
2
votes
2answers
420 views
ipython -pylab debugging: Can I stop the execution at a specific line and drop into the shell?
When writing python code (mostly numpy + matplotlib), I usually just type the code in vim and run the program to test it:
python2 foo.py
Occasionally, when this is not sufficient and I need to ...
2
votes
3answers
413 views
What is the meaning of a dollar symbol ($) in SciLab?
What is the meaning of a dollar symbol ($) in SciLab?
EDIT:
What I meant was dollar symbol used in indexing lists. I assumed that's the single use of it.
1
vote
0answers
48 views
Arduino as xcos block
I am developing an interface between Arduino microcontroller and Scilab (analogue of MATLAB) simulation environment.
How I see it:
A graphical block representing Arduino in Scilab. It will have 6 ...
1
vote
2answers
60 views
Locatizing Barcode using Scilab with [SVIP toolbox & IPD toolbox loaded]
I'm new in Scilab and currently working on a project on barcode.
How can I locate barcode in an image of a product?
Is there any clue on what I can research on?
1
vote
2answers
59 views
Running Scilab from pexpect
I am trying to run scilab using the pexpect module with the following code:
import pexpect
c=pexpect.spawn('scilab-adv-cli -nb')
c.expect('-->')
...
1
vote
2answers
617 views
Invalid index error in Scilab when trying to access array element
I'm not sure why I can't do this in Scilab.
-->foo=zeros(500);
-->foo(300)
!--error 21
Invalid index.
Why do I get the 'Invalid index' error? I thought I had initialized foo as an ...
1
vote
2answers
244 views
(scilab) x = [-6,6] y = 1/(1+%e^-x) why it doesn't work?
I'm trying to draw sigmoid function using this code on scilab, but the result I got is not from the equation. what's wrong with my code?
x = -6:1:6;
y = 1/(1+%e^-x)
y =
0.0021340
0.0007884
...
1
vote
1answer
122 views
“scicosim: error. Type 0 not yet supported for outtb.” how to solve this problem?
I'm having an incomprehensible problem in Scicoslab in the last few days.
I've been writing some communication blocks (to send data to an external application) for scicos in C and then wrap them with ...
1
vote
2answers
252 views
How to pass a function as argument
I'm using Scilab and I'm trying to make a function like the following:
function p = binary_search(myf,a,b)
The target is to make a binary_search to find such p that: myf(p) = 0 in [a,b].
I want to ...
1
vote
2answers
632 views
Can I directly use Java source code directly in SCILAB, or Is there another way to connect both?
a friend of mine uses SCILAB for doing his mathematicall "homework" for his studies and he told me, that it should be possible to use Java source code diretly in SCILAB.
The background is that I ...
0
votes
0answers
16 views
Compiling and linking code to Scilab
I am working on C computational function for Scilab xcos block. When trying to compile and link the code to Scilab using ilib_for_link('DO13','do13.c',[],"c"), I get:
Generate a loader file
...
0
votes
0answers
19 views
Scilab + java plotting line
I'm trying to plot a line graph with scilab trough Java but I can't seem to render the lines:
sci.exec("plot("+ ar[j].length +","+timeOut+",'o-');");
It does show the points as circles but it's ...
0
votes
1answer
18 views
How to make custom module for Scilab?
I have to custom module for Scilab. After reading of documentation, I try to use toolbox_skeleton, but I don't know how I can load this module into Scilab: I press "load", select "loader" of module ...
0
votes
0answers
14 views
How to find the intersection of two curves in Scilab?
I have two curves (non linear) say C1 and C2. which intersect with each other(can be more than once).
I need to find these points of intersection using Scilab only.
0
votes
0answers
38 views
Saving scilab plot to image directly via command prompt
I am accessing SCILAB via SSH. I can't view plots. Is there a way to create plots and save them as a file so I can download them via FTP?
0
votes
1answer
68 views
Running a process remotely using Python
Is it possible to run a System process remotely , i.e. in the background using python?
For e.g. I ave Scilab installed on my system, now I do something like this
xx= ...
0
votes
1answer
82 views
Scilab plots in -nogui mode
Is it possible to plot graphs when running Scialb in -nogui mode ?
I tried the following :
saket@launchpad:~$scilab -nogui
-->x=[1:10];
-->y= sin(x);
-->plot2d(x,y)
which gives the ...
0
votes
1answer
79 views
SciLab: where do functions live / need to live?
I'm learning SciLab and I need to figure out the equivalent from MATLAB for running user-defined functions.
I'm used to MATLAB, where when you type foo(27), it looks for the foo.m script in the ...
0
votes
1answer
168 views
user-friendly application entry points in MATLAB or SciLab
I have an application I would like to write in either MATLAB or SciLab. This question is not about the application itself, but about entry points.
I would like a way for users to click on an icon or ...
0
votes
2answers
104 views
documentation for learning SciLab?
I'd like to use SciLab as an alternative for the 90% of things I need to do that don't require MATLAB's proprietary functionality (and for which we have a limited # of expensive concurrent licenses at ...
0
votes
1answer
153 views
How to load SIVP toolbox through scilab console?
I use GUI to select and load SIVP toolbox in scilab.
How do I do it through scilab console ?
0
votes
0answers
52 views
Does Scilab has vpa, digits commands of matlab
In matlab I can set precision of calculations using functions vpa and digits.
How can I do it in Scilab?
0
votes
2answers
189 views
is serial communication possible via scilab on linux?
I am trying to use scilab for a project and I need to pass on some values to a robot via serial port.
I had done this successfully on Matlab. I have ported almsot everything to Scilab now but I dont ...
0
votes
2answers
134 views
Scilab: “first and second input arguments must be real at line 53 of function histplot”
Why does this piece of code fail in Scilab?
N=1000;
U=rand(N, 1);
X=(9*U - 1)^(1/3);
histplot(200, X);
0
votes
1answer
68 views
return type of who_user in scilab
greetings and apologies if this is a repost (i searched this site, and i believe its not a repost, though)
I work with scilab, but during a project, scilab has to deal with a large number of ...
0
votes
1answer
86 views
replicating a matrix in the 3rd dimension in scilab
I'd like to replicate an NxM matrix into an NxMx3 matrix, i.e. have 3 copies of the input matrix in the third dimension. How do I do that?
0
votes
1answer
67 views
What is the best way to capture output form scilab into a publishable format?
I am using scilab to do some simple simulation. The outcome will a number of plot and graph. What is the easiest way to capture these outputs and publish them into a pdf or ps file?
Hopefully it is ...
0
votes
1answer
456 views
how to find integrals from limit -infinity to +infinity in scilab
How to find integrals from limits -infinity to +infinity in SCILAB ? ( Expression to be integrated are not directly integratable )
0
votes
1answer
370 views
Can anyone describe in detail how to set up javasci (SCILAB) in eclipse right, please?
I am trying to set up SCILAB's javasci ineclipse for the whole day, but it's not working and I don't know, what they want to tell me with http://www.scilab.org/product/man/compile_and_run_javasci.html
...
0
votes
1answer
393 views
limit to the number of digits
my project is to create a program that will test whether a number is prime or not. the code is ready. but when i enter a 19 digit prime for example, the code immediately outputs "composite". i'm quite ...
0
votes
2answers
217 views
Solution to overdetermined systems
How to find solution to overdetermined systems in Macsyma, Scilab, Octave?
0
votes
3answers
181 views
strange function definition in Scilab<->C interface
I'am talking about this example of a Scilab<->C wrapper: http://www.scilab.org/doc/intro/node89.html.
The strange part is this one:
int intsfoubare(fname)
char *fname;
{
....(some code)
...
-1
votes
0answers
42 views
Scilab BNF Grammar
I have the following Scilab bnf grammar (in Flex-Bison) [parsescilab.yy, scanscilab.ll].
That grammar does not look much correct to me.
Grammar files:
...