This is a scilab toolbox to call octave functions. It requires octave to be installed on the system.
OS - Linux Debian 10, Ubuntu 18.10 (64-bit)
Octave - Version 4.4.1, 5.1.0
Scilab - Version 6.0.1
Run the following commands in the linux terminal
sudo apt-get install build-essential (~117 MB download)
sudo apt-get install liboctave-dev (~103 MB download)
sudo apt-get install octave
sudo apt-get install scilab
sudo apt-get install octave-<pkg name>
For example, to install signal package in octave, dosudo apt-get install octave-signal
cd <path to fossee-scilab-octave-toolbox directory>
exec builder.sce
exec loader.sce
help octave_fun
(then execute the examples appearing on the help page to test the toolbox)
In case if executing the builder and loader files in scilab throw an error regarding .so files, you probably need to build the toolbox from source. Do the following on the linux terminal
- Download the fossee-scilab-octave-toolbox source from
atoms.scilab.org
- Close scilab, if running
cd <path to fossee-scilab-octave-toolbox/src/ directory>
make clean
make
make install