I am trying to 

(1) create an array in Julia: 
X = rand(3,10)   


(2) convert it to a PyArray (no copy) : 
Xpy = PyArray(X)


(3) then assign this to a field of an object:   
pyobj["X"] = Xpy   or    pyobj["X"] = Xpy.o     or ????

The aim is, when I modify X, then the data in pyobj[:X] should be modified 
as well. The way described above does not work. 

Is there a way to achieve this or is there a fundamental limitation?

Thank you.
 

Reply via email to