Top "Scilab" questions

Scilab is a free and open source, cross-platform numerical computational package and a high-level, numerically oriented programming language.

How to convert a boolean array to an int array

I use Scilab, and want to convert an array of booleans into an array of integers: >>> x = …

python integer boolean type-conversion scilab
Accessing variable by string name

I need to load experimental data into scicoslab, a (pretty badly designed) clone fork of scilab which happens to support …

matlab octave scilab
Using a MATLAB code on Scilab

Is it possible to use a MATLAB code on Scilab? Is that what is meant when saying that Scilab is …

matlab scilab
Plot different colours - Scilab

Is it possible to have different colours in my plot in Scilab? I use the mtlb_hold to hold the …

plot colors scilab
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' …

syntax scilab
How to draw a line in Scilab

I'm trying to plot a line between two points: a(xa,ya) and b(xb,yb). How can I do …

scilab
How to use parallel 'for' loop in Octave or Scilab?

I have two for loops running in my Matlab code. The inner loop is parallelized using Matlabpool in 12 processors (which …

matlab parallel-processing octave scilab
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 …

serial-port arduino communication scilab
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 …

matlab scilab
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. …

matlab scilab