Hi, I want to create a generator for random irreducible N times N matrices, where N is a given integer.
For now I'm using this trick:
Generate a N-length array H_i with purely random numbers
Creating the matrix by assigning element A_{ij} = \min(1,\exp[\beta (H_i-H_j)])
This matrix is...