Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
800x800 の特異 (共分散) 行列があり、この固有値に対応する最大の固有値と固有ベクトルを見つけたいと考えています。Rでそれが可能かどうか知っている人はいますか?
svd共分散行列の分解に使用する例を次に示します。
svd
a <- matrix(runif(16),4) C <- cov(a) res <- svd(C) res res$d[1] # largest singular value res$u[,1] # largest vector ; u and v are the same
それが役立つことを願っています。