rpuchol {rpud} | R Documentation |
The rpuchol
method computes the upper triangular
Cholesky decomposition of a real positive definite symmetric
matrix using GPU.
rpuchol(x, ...)
x |
A positive symmetric data matrix. |
... |
Not used. |
The upper triangular Cholesky decomposition.
Chi Yau
chi.yau@r-tutor.com
## Not run:
library(rpud)
N <- 20
x <- matrix(runif(N*5), ncol=N)
A <- t(x)
rpuchol(A)
## End(Not run)