On Jan 10, 2008 10:59 AM,  <[EMAIL PROTECTED]> wrote:
>
> numpy saves the day.
>
> import numpy
> A = numpy.loadtxt('foo.data')  #A is a float array
> B = M.astype(int)              #B is an int array
>
> M = Matrix(RDF, list(A))       #M is a RDF matrix
> N = Matrix(ZZ, list(B))        #N is an Integer matrix

Note that numpy arrays also have a .tolist() method, with 'smarter'
unpacking behavior:

In [16]: a = zeros((2,3))

In [17]: list(a)
Out[17]: [array([ 0.,  0.,  0.]), array([ 0.,  0.,  0.])]

In [18]: a.tolist()
Out[18]: [[0.0, 0.0, 0.0], [0.0, 0.0, 0.0]]

It may be useful for some cases.

Cheers,

f

--~--~---------~--~----~------------~-------~--~----~
To post to this group, send email to sage-devel@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/sage-devel
URLs: http://sage.scipy.org/sage/ and http://modular.math.washington.edu/sage/
-~----------~----~----~----~------~----~------~--~---

Reply via email to