Scilab is a free and 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 ...

learn more… | top users | synonyms

0
votes
1answer
16 views

How to use Fuzzy GUI editor in Scilab?

I've installed Fuzzy Logic Toolbox on Scilab 5.4.1 In Matlab we can write fuzzy in command line and use fuzzy GUI editor. How to use Fuzzy GUI editor in Scilab?
0
votes
1answer
26 views

Scilab - calling another GUI within a GUI. Functions not working

I'm quite new to scilab, I have created two GUIs (see example below), with script 2 being called from script 1. However the function in script 2 don't seem to work. Can anyone help? Script 1 ...
0
votes
1answer
24 views

Completing a list of possible binary sequences give a binary sequence with gaps

So, I am working on a program in Scilab which solves a binary puzzle. I have come across a problem however. Can anyone explain to me the logic behind solving a binary sequence with gaps (like [1 0 -1 ...
2
votes
1answer
37 views

Multiple images in scilab simultaneously

How do we display more than one image simultaneously in scilab? I used to do it using figure,imshow() in matlab. Whats the scilab alternative? Thank you.
0
votes
1answer
33 views

How to get heat colors with plot3d in scilab?

Hi this may seem to be a simple question but I am having a hard time understanding how to use the colors in a plot3d. That is what I have: // x, y and z are matrix 4 by 100 myColors = ...
0
votes
1answer
42 views

Learn to use Scilab and ImageJ

I am trying to learn to use Scilab and ImageJ, which is software that uses computer coding commands to make graphs and spreadsheets, etc. I've never learned how to code, could you direct me to any ...
0
votes
1answer
32 views

scilab plotting factorial; first trying to correct the equation?

I'm trying to execute this equation in scilab; however, I'm getting error: 59 of function %s_pow called ... even though I define x. n=0:1:3; x=[0:0.1:2]; z = factorial(3); w = factorial(n);u = ...
0
votes
1answer
74 views

scilab call C function

I would like to call C function within scilab. I am trying to follow "call" convention but it does not work for me somehow therefore I am looking for help. C function: f1=['void add1(double a,double ...
0
votes
1answer
41 views

Scilab automatic deletion of zero elements

How to avoid deleting of zero elements at the end of array? For example i have a matrix (array) [1,0,1,1,1,0]. When i find this array as return value in my function, it needs to return that what i ...
1
vote
1answer
35 views

Get specific row from matrix in Scilab

For example, I've created a matrix a = [1, 2, 3; 4, 5, 6; 7, 8, 9] and I want to extract the second row in variable r, so after that r = [4, 5, 6]. How I can do that?
0
votes
0answers
22 views

scilab serial port reopening

We have sent sms through scilab serial port using gsm modem. But our problem is that the serial port can be opened using "openserial" only once, if we execute this command again, it gives error "COM ...
1
vote
1answer
465 views

How to make Scilab open a serial communication with /dev/ttyACM0 USB port in Linux (Ubuntu)

I'm trying to open a serial communication between Scilab and Arduino. However, Arduino is always recognized by Linux Ubuntu in the /dev/tty**ACM0** port. When I write h=openserial(1,"9600,n,8,1) in ...
1
vote
2answers
68 views

Avoid nested for loops in distance comparison

I have two lists of objects; I would like to perform operation on a given list 2 object, only if it is within the boundaries of the current list 1 object. Something like this : for ...
0
votes
2answers
113 views

Scilab, add text to an image

I would like to add text in an image using Scilab; at first I wanted to use SIVP imshow, but it turns out this function does not return a handle. IPD's ShowImage on the other hand does return a ...
0
votes
2answers
34 views

matrix manipulation SciLab

I heard there was some way to change matrix values without using the FOR loop. For example: A = [1 2; 3 4] There is suppose to be a way I can make all the values for example less than 4 and changed ...
0
votes
0answers
28 views

How do I set up graphing a stream of numbers continuously in SciLab?

I am getting measurements over RS-232 at about one value per second. I would like to set up a real-time updated graph, so that I can monitor my system at a glance. I am working under Ubuntu 10.04, ...
0
votes
2answers
53 views

cv::Mat frame and SCILAB

I have a frame in opencv wich I don't want to save using imwrite(), that I use this code to extract each channel and save it and than open the three files and combining a new frame first here is the ...
0
votes
1answer
59 views

getting the values of cv::Mat

I've program, in which I calcul the mean value of multiples frames, when I save this mean value wich is a frame I got a 965KB file, but I do the same thing with SCILAB which based on OpenCV I get a ...
2
votes
2answers
75 views

Vim Code Folding for Scilab

I've just recently started to use the folding functionality of vim and it's very helpful for the languages that it works really well for. My issue lies in the way vim comments out the fold markers in ...
0
votes
1answer
101 views

Using a MATLAB code on Scilab

a quick question. Is it possible to use a MATLAB code on Scilab? Is that what is meant when saying that Scilab is a "clone" from MATLAB?
0
votes
0answers
42 views

scilab code execution through bash program

Can anyone why this code is not working? echo "Welcome to automatic code check" echo "Hello $USER, Welcome to CODE CHECK" echo "The Date & Time is:" date read -p "Enter foldername in downloads ...
0
votes
0answers
53 views

Scilab, SIVP : image format issue

I can open some png image without problem, the image appears in the workspace as a width x height matrix, so far so good. Then I use Paint to select a part of this very same image, ctrl+X, create new ...
0
votes
1answer
193 views

Serial communication with scilab in Linux

Can you please provide some examples of serial communication with scilab in Linux. When I gave the command: h=openserial(1,"9600,n,8,1"); I am getting the following error: ...
0
votes
0answers
29 views

SCILAB packages

I have a a C/C++ VS project in wich I call SCILAB script files and execut them, My Problem is in the start of SCILAB from my code with : #ifdef _MSC_VER if ( StartScilab(NULL,NULL,NULL) == FALSE ...
1
vote
2answers
2k 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 ...
0
votes
0answers
56 views

defining a variable in C/C++ to scilab

I have a Visual Studio C++ project, and a SCILAB .sce file, I want to execut this file from my C++ project, this could be done with : ........ SendScilabJob("exec('U:/scilab/done/SNR.sce');"); ...
0
votes
0answers
32 views

scilab 5.4.0 saving, appending to old savfile

i have bin trying to find out a way to append information in an existing savefile in scilab 5.4.0 the usual method namely: fd = mopen('savefile/path, 'a') save(fd, var1, var2...) mclose(fd) is ...
0
votes
1answer
528 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 ?
1
vote
1answer
604 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 ...
0
votes
0answers
44 views

Using Scilab to read a Multimeter

I am new to scilab and I have this project on scilab. The idea is to read the output reading from a Multimeter that has an external USB port from Scilab. For example If I measure a 1000ohms resistor ...
0
votes
1answer
64 views

Why is my plot3d white in SciLab?

t = 0:%pi/50:10*%pi; plot3d(sin(t),cos(t),t) When I execute this code the plot is done but the line is not visible, only the box. Any ideas which property I have to change? Thanks
0
votes
4answers
241 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) ...
0
votes
1answer
59 views

Loading matrix and list into Scilab environment

I am trying to load a matrix and a list into Scilab's environment. The matrix and the list are created by a function(F1). To do this, I know that the matrix and list are defined as output at the ...
0
votes
0answers
158 views

scilab Error 999

I'm trying to open a a image with scilab via imread(). I saved with my opencv projekt in c++ but I get an error message !--error 999 imread: Can not open file any Idea why I get this . by ...
0
votes
0answers
78 views

Solve system of equations without write down all the equations separately

In Scilab, there is some way to write a system of equations in form of a matrix, that is, in each element of this matrix is a equation that has to be solved? I have, for example, a 3x3 matrix A in ...
0
votes
1answer
186 views

Plot different colours - Scilab

Is it possible to have different colours in my plot in Scilab?I use the mtlb_hold to hold the graph and it works fine,but my problem is that then i have the same colours in my graph.In Matlab with ...
0
votes
2answers
130 views

How to multiply polynomials in scilab

It´s supposed there is, at least, two comands, poly and var. But I don´t know how to use them to perform a operation like this: 1/4*b*a^2 - a*b/2(2/3*a)^2 where a y b are symbolic variables. How ...
0
votes
2answers
464 views

No scilab gui (Ubuntu 12.04)

I installed scilab in Ubuntu 12.04. When I start in terminal or from KDE application menu, I only get a scilab console. Why don't I get the gui?
2
votes
1answer
166 views

Scilab syntax: How to transpose and reshape without the use of an intermediate variable?

Lets use the matrix A as an example: -->A = [1 2 3; 4 5 6] A = 1. 2. 3. 4. 5. 6. I can transpose this matrix: -->A' ans = 1. 4. 2. 5. 3. ...
3
votes
0answers
226 views

Scilab issue with exec command

I am using Scinote 5.4.0 with OSX 10.7.4. I am unable to execute script files from the console using the exec("path") command; when I do so, only the first line of the script file is read. Example: ...
0
votes
2answers
147 views

siemens star with scilab

I'm trying to draw siemens star with scilab and I don't get it done any idea why it doesn't work ? : t = 0:.001:2*%pi; xc = 4; yc= 4; r =2 ; n = 1:length(t)/32 : length(t); v =0:.001:r; for k ...
0
votes
2answers
662 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
3answers
159 views

Calling MATLAB or Scilab function from c++ project

I'm trying to access some Scilab functions from my c++ project. I'm working on win7. My question is how can I do that.? for ex. function [r] = fun(a,b) r =a+b; endfunction How can I tell my ...
0
votes
1answer
146 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.
1
vote
1answer
97 views

Documentation for user-defined functions in Scilab

I'm finishing a Scilab project for school, and I've added comments to all my function based on this passage from the documentation: Inside a function, the first comment lines, up to the first ...
0
votes
1answer
146 views

how to get a part of vector in matlab

I want to get parts of a vector V with width W As a result, I want to get M = N*M, so that if I say M(2,:), I will get all the values of V(2*W : 3*W). Any Ideas?
-1
votes
2answers
270 views

drawing a line in scilab any Idea how to do it?

I'm try to plot a line between two points a(xa,ya) and b(xb,yb) any idea how I can do hat in scilab. thanks in advance for your help
3
votes
1answer
138 views

SciLab checkbox UIControl value not changing with state?

I'm trying to design a GUI in SciLab that updates it's properties depending on a checkmark. For example: A checkbox might enable and change the backrounds of several text boxes during a callback; or a ...
0
votes
0answers
71 views

INSTALLING sivp on scilab via atoms

I'm try to install SIVP on scilab, I use atoms downlaod manager for that, and that'S what I get : atomsDownload: The downloaded file doesn't check the MD5SUM: - file : ...
0
votes
2answers
112 views

Scilab several custom functions

I have several functions in different .sci files. Also, these files are in different directories. These functions are used by a main program. With old Scilab versions I have used getf(...) to load ...

1 2