[sage-support] Re: read very large integer matrix from file

2009-02-01 Thread John Matrix
Thanks, Fabio, that seems to solve my problem indeed! --~--~-~--~~~---~--~~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support-unsubscr...@googlegroups.com For more options, visit this grou

[sage-support] Re: read very large integer matrix from file

2009-02-01 Thread Fabio Tonti
What about http://groups.google.com/group/sage-devel/browse_thread/thread/90ae1dcee213a9c7?pli=1? Fabio On Sun, Feb 1, 2009 at 8:20 AM, John Matrix wrote: > > > Hi David and Minh, > > Thanks for your comments! > @David > In the worst case, the matrix will have roughly 17000 rows and > columns.

[sage-support] Re: read very large integer matrix from file

2009-02-01 Thread John Matrix
Hi David and Minh, Thanks for your comments! @David In the worst case, the matrix will have roughly 17000 rows and columns. I could reduce it with some effort, but I'll first try to figure out if it's worth it. I don't know Python very well, but I could probably learn that much. Alternatively, I

[sage-support] Re: read very large integer matrix from file

2009-02-01 Thread Minh Nguyen
Hi John, On Sun, Feb 1, 2009 at 3:18 PM, John Matrix wrote: [...] > I'd like to read a very large integer dense square matrix into sage > from a file, in order to determine its rank. I could not find much > information on what format I should store the matrix in, and what > commands to use to re

[sage-support] Re: read very large integer matrix from file

2009-02-01 Thread David Joyner
I guess it depends on what "very large" means. Do you know any Python? If so, one option is just read in the file of entries then write a python/sage script to create the matrix in Sage from that. I think large integer matrices use linbox, which I think is easily capable of some matrix computation