Recall that a Hurwitz matrix is one whose eigenvalues lie in the left half plane; strictly Hurwitz such that they are in the strict left half plane.
Is there way to randomly generate Hurwitz matrices? I came up with two methods,
- Randomly sample $A$ from the uniform distribution (each element of $A$ is picked from $[0,1]$ with equal probability), then $M = -(A+A^T)/2-nI$ will have eigenvalues in the strict left half plane.
- Randomly sample a $(n-1)\times (n-1)$ matrix $A$ from the uniform distribution (again in the sense above). Then create a matrix $n\times n$ matrix $M$ such that for each row, the diagonal value is the negative row sum of corresponding row of $A$ and the other values are the row of $A$. Then $M$ will be Hurwitz (not strict).
Can we say anything about the distribution of eigenvalues in each of the cases? Given a subset of the left half plane, is there any method that will generate random Hurwitz matrices whose eigenvalues are uniformly distributed over this subset?
If someone has answers for the case where $A$ is sampled from the normal distribution (again in the elementwise sense) that would be welcome too.
EDIT: Since asking this I have come across Wishart matrices and Wigner distribution so I am happy if someone just answers the previous question; for which I think this method will generate sampled matrices from with eigenvalues in any finite subset of the real line (but from which distribution I know not).