| 30-Eigen decomposition | R Documentation |
Solves a system of equations or invert an MPCR matrix, using lapack routine syevr()
## S4 method for signature 'Rcpp_MPCR'
eigen(x, only.values = FALSE)
x |
An MPCR object. |
only.values |
(TRUE/FALSE)? |
A list contains MPCR objects describing the values and optionally vectors.
## Not run:
library(MPCR)
s <- runif(10, 3)
cross_prod <- crossprod(s)
x <- as.MPCR(cross_prod,nrow(cross_prod),nrow(cross_prod),"double")
y <- eigen(x)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.