Python to Scilab bridge
Project description
Scilab2Py is a means to seamlessly call Scilab functions and scripts from Python. It manages the Scilab session for you, sharing data behind the scenes using MAT files. Usage is as simple as:
>>> sci = scilab2py.Scilab2Py()
>>> x = sci.zeros(3,3)
>>> print x, x.dtype
[[ 0. 0. 0.]
[ 0. 0. 0.]
[ 0. 0. 0.]] float64
...
Features
Supports most Scilab datatypes and most Python datatypes and Numpy dtypes.
Provides ScilabMagic for IPython, including inline plotting in notebooks.
Supports cell arrays and structs with arbitrary nesting.
Supports sparse matrices.
Builds methods on the fly linked to Scilab commands (e.g. zeros above).
Nargout is automatically inferred by the number of return variables.
Thread-safety: each Scilab2Py object uses an independent Scilab session.
Can be used as a context manager.
Supports Unicode characters.
Supports logging of session commands.
Optional timeout command parameter to prevent runaway Scilab sessions.
Installation
You must have Scilab 5.4 or newer installed and in your PATH. You must have the Numpy and Scipy libraries installed.
To install Scilab2Py, simply:
$ pip install scilab2py
Documentation
Documentation is available online.
For version information, see the Revision History.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Hashes for scilab2py-0.4-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 75d26b1e7aaf3e9571a8f34785db52a64a3d6e833d57f3f3ca73a1875b196aa7 |
|
MD5 | 37315280043f57e9d0dedd8f12a4525f |
|
BLAKE2b-256 | c5ba515c6a747c2b3ac2e25587d0c9d59f60a86114730e4b0359c25447cc84ad |