Tenens
- 1
- 0
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:
This matrix is guaranteed to be irreducible by a book I found. I was just wondering, does this method generate all kinds of irreducible matrices or just a subset?
Is there any other algorithm to generate an irreducible matrix? Do you have any references on how to build such a random generator?
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 guaranteed to be irreducible by a book I found. I was just wondering, does this method generate all kinds of irreducible matrices or just a subset?
Is there any other algorithm to generate an irreducible matrix? Do you have any references on how to build such a random generator?