Questions tagged [scilab]

"Scilab is free and open source software for numerical computation providing a powerful computing environment for engineering and scientific applications." ~ The Scilab Website

Scilab is a free and open source software and programming language intended for numerical computations (although with one of the many available toolboxes designed for it, it becomes capable of symbolic calculations). It is released under the CeCILL license (GPL-compatible) and has many of the same functionalities as MATLAB. Its syntax is also similar to MATLAB, although is generally considered more compatible with the MATLAB syntax.

It is available in the official Ubuntu repositories (hence it is available via APT and the software centre), but this version often lags behind the latest releases of this software. Its source code and Linux binary tarball can be downloaded from here.

The binary tarball includes an executable shell script that will start the program, it is possible to call scilab from the command-line by creating a /usr/bin/scilab file with the contents BINDIR/bin/scilab where BINDIR is replaced with the location of the extracted contents of the binary tarball. For example, say one wanted to make Scilab executable by running scilab from the shell on a 32-bit system, then the following technique should work (which has been tested successfully on 32 bit Ubuntu 15.04):

ver=5.5.2 #to be changed with the latest available version of Scilab
cd ~
wget -c http://www.scilab.org/download/$ver/scilab-$ver.bin.linux-i686.tar.gz
tar -xzf scilab-$ver.bin.linux-i686.tar.gz
mv scilab-$ver scilab
cd scilab
nano scilab

Then in nano adding:

/home/username/scilab/bin/scilab

Press Ctrl+X, then Y and then Enter or Return to save the changes. Then run:

chmod +x scilab
sudo mv scilab /usr/bin/scilab

to test whether this has worked run scilab from the command line.

31 questions
1
vote
0 answers

Scilab cannot create Java Main-Class on Ubuntu 17.10

First of all, I am sorry for asking this queston in askubuntu rather than in sciab community. But I need a fast solution and the sciab community can take a few days to answer a question. I have a problem after installing scilab 5.5.2 on ubuntu…
1
vote
0 answers

i have installed scilab latest version but it is showing error

i have installed scilab latest version but it is showing error but after install when i try to open scilab either from terminal or graphically it shows me this error... Scilab cannot create Scilab Java Main-Class (we have not been able to find the…
0
votes
1 answer

Upgrading Scilab from 5.5.0 to 5.5.1

Few days back I installed Scilab by command line sudo apt-get install scilab but it installed version 5.5.0 instead of the current one. How can I install the latest one from command line?
0
votes
1 answer

SciLab icon not displayed properly

I updated Ubuntu from 12.10 to 13.04. After this, SciLab icon has changed to question mark (?) But it is working. How to solve this issue?