| ddmatrix-chol {pbdDMAT} | R Documentation |
Cholesky factorization for distributed matrices with R-like syntax, with calculations performed by the PBLAS and ScaLAPACK libraries.
## S4 method for signature 'ddmatrix' chol(x)
x |
numeric distributed matrices. |
... |
Ignored. |
Extensions of R linear algebra functions.
chol() performs Cholesky factorization.
## 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 <- solve(crossprod(x)) y finalize() ## End(Not run)