I have the following function that creates M random normal matrices of size n. But how can I plot all the Eigen values of all these matrices in one plot (histogram )?
M = 10000
n = 6
rmat <- function(n){
matrix(rnorm(n*n), n, n)
}
out <- replicate(M, rmat(n))
Aucun commentaire:
Enregistrer un commentaire