ddmatrix-lu {pbdDMAT}R Documentation

LU Factorization

Description

LU factorization for distributed matrices with R-like syntax, with calculations performed by the PBLAS and ScaLAPACK libraries.

Usage

## S4 method for signature 'ddmatrix'
lu(x)

Arguments

x

numeric distributed matrices.

Details

Extensions of R linear algebra functions.

Value

lu() performs LU factorization.

Examples

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

# don't do this in production code
x <- matrix(1:9, 3)
x <- as.ddmatrix(x)

y <- solve(t(A) %*% A)
print(y)

finalize()

## End(Not run)


[Package pbdDMAT version 0.4-0 Index]