简体   繁体   中英

How can I plot the eigen values of 10000 random matrices in R?

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))

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))

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM