From: Alexander S. <a.s...@gm...> - 2002-06-24 19:27:58
|
Aureli Soria Frisch <Aur...@ip...> writes: > Has someone made similar experiences by 'pickling' arrays? Could it be a > problem of the different computers running versions of Python from 2.0 to > 2.2.1? Or a problem of different versions of NumPy? Yes -- pickling isn't meant to work across different python versions (it might to some extent, but I wouldn't try it unless there is no way around it). Using netcdf as a data format instead of pickling might also be a solution (if intermediate storage on the disk is not too inefficient, but your original approach involved that anyway). Konrad Hinsen has written a nice wrapper for python that is quite easy to use: http://starship.python.net/crew/hinsen/scientific.html. alex -- Alexander Schmolck Postgraduate Research Student Department of Computer Science University of Exeter A.S...@gm... http://www.dcs.ex.ac.uk/people/aschmolc/ |