eigen.HDF5Matrix

eigen.HDF5Matrix

OTHER

1 Usage

eigen.HDF5Matrix(x, symmetric = TRUE, ...)

2 Arguments

Parameter Description
only.values Logical. Ignored; present for compatibility with .
EISPACK Logical. Ignored; present for compatibility with .

3 Examples

\donttest{
tmp <- tempfile(fileext = ".h5")
m   <- crossprod(matrix(rnorm(400), 20, 20))
X   <- hdf5_create_matrix(tmp, "data/M", data = m)
ev  <- eigen(X, symmetric = TRUE, k = 5L)
ev$values
close(ev$vectors)
close(X)
unlink(tmp)
}