/usr/lib/python2.7/dist-packages/sciscipy-1.0.0.egg-info is in python-sciscipy 1.0.1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | Metadata-Version: 1.0
Name: sciscipy
Version: 1.0.0
Summary: Scilab binding
Home-page: http://forge.scilab.org/index.php/p/sciscipy/
Author: Vincent Guffens <vincent.guffens@gmail.com>, Sylvestre Ledru <sylvestre.ledru@scilab-enterprises.com>
Author-email: UNKNOWN
License: GPL
Description:
The goal of sciscipy is to give an access to Scilab features inside python.
from scilab import Scilab
sci = Scilab()
x = sci.rand(20, 20)
y = x*x.transpose()
y_inv = sci.inv(y)
The function func in sci.func(x, y) can be a Scilab built-in or any user
defined function so that Scilab libraries can be reused easily in python.
Platform: UNKNOWN
|