Hi,
I'm trying to use some linear solvers from scipy in julia with pycall and I
always get an error:
ERROR: PyError (:PyObject_Call) <class 'TypeError'>
TypeError('type not understood',)
My small test program:
using PyCall
@pyimport numpy as np
@pyimport scipy.sparse.linalg as sp
sp.gmres(np.eye(5,5),np.zeros(5))
In the end I want to use julia types but I have already problems using the
arrays created by numpy.
It is also not working when I'm using a PyObject.
I can use some scipy functions like 'sum' or 'inv' but also otheres like
'cg' are not working.
Can someone help me at this point?
I'm using julia 0.4.0 and linked against python 3.4.1 (it is also not
working with 2.7.8) .
Cheers
Christopher