Re: Math package

2006-07-29 Thread Robert Kern
[EMAIL PROTECTED] wrote: > I will write the problem a little more clearer so that you guys can > recommend me better. > > In a graphs of size N ( where, N = 1e9), each node has a degree D=1000. > i.e There are overall (D*N)/2 edges in the graph. This graph needs to > be generated randomly using th

Re: Math package

2006-07-29 Thread diffuser78
I will write the problem a little more clearer so that you guys can recommend me better. In a graphs of size N ( where, N = 1e9), each node has a degree D=1000. i.e There are overall (D*N)/2 edges in the graph. This graph needs to be generated randomly using the program. Now my task is to find th

Re: Math package

2006-07-29 Thread bearophileHUGS
[EMAIL PROTECTED]: > I want to write a program which would have a 2 dimensional array of 1 > billion by 1 billion. This is for computational purposes and evaluating > a mathematical concept similar to Erdos number. Maybe you are talking about the edges of a graph with 1e9 nodes. This structure is

Re: Math package

2006-07-29 Thread Marc 'BlackJack' Rintsch
In <[EMAIL PROTECTED]>, diffuser78 wrote: > I want to write a program which would have a 2 dimensional array of 1 > billion by 1 billion. This is for computational purposes and evaluating > a mathematical concept similar to Erdos number. Lets say you just want a byte at each cell in that array:

Re: Math package

2006-07-29 Thread Bas
I think you need one of these: http://www-03.ibm.com/servers/deepcomputing/bluegene.html Don't know if it runs python. If that doesn't work try to reformulate your problem and have a look at http://scipy.org/ Cheers, Bas [EMAIL PROTECTED] wrote: > I want to write a program which would have a 2

Math package

2006-07-29 Thread diffuser78
I want to write a program which would have a 2 dimensional array of 1 billion by 1 billion. This is for computational purposes and evaluating a mathematical concept similar to Erdos number. Which is the best package for such programs (that would be fast enough). Every help is appreciated. Thank