I need to create a matrix N * N of true random numbers, where N can be from ten thousand to a million
I found the quantumrandom library, which returns random numbers from a quantum computer. This is only in the code that returns the matrix of the remainder of dividing numbers by 2
matrix = [] #array with ALL random numbers div = np.zeros(N) + 2 for i in range (0,N): row = qr.get_data(array_length=N) # array of N random numbers row = row % div matrix.append (row) #matrix N*N even with N = 1000, the error timeout knocks out
My question is, what other tools can I use in Python that can return a large random number matrix?
The random module does not suit me
array_length cannot be larger than 1024- m0nte-cr1st0