| ddmatrix-eigen {pbdDMAT} | R Documentation |
Eigenvalue decomposition for distributed matrices with R-like syntax, with calculations performed by the PBLAS and ScaLAPACK libraries.
## S4 method for signature 'ddmatrix' eigen(x, symmetric, only.values = FALSE, EISPACK = FALSE)
x |
numeric distributed matrices. |
symmetric |
logical, if |
only.values |
logical, if |
EISPACK |
Ignored. |
Extensions of R linear algebra functions.
eigen() computes the eigenvalues, and eigenvectors if requested. As
## Not run: # Save code in a file "demo.r" and run with 2 processors by # > mpiexec -np 2 Rscript demo.r library(pbdDMAT, quiet = TRUE) init.grid() x <- ddmatrix(1:9, 3, bldim=2) y <- eigen(crossprod(x)) y finalize() ## End(Not run)