print.HDF5Matrix: Print an HDF5Matrix object

View source: R/S3_core.R

print.HDF5MatrixR Documentation

Print an HDF5Matrix object

Description

Print an HDF5Matrix object

Usage

## S3 method for class 'HDF5Matrix'
print(x, ...)

Arguments

x

An HDF5Matrix object

...

Ignored

Value

Invisible x

Examples


tmp <- tempfile(fileext = ".h5")

X  <- hdf5_create_matrix(tmp, "data/matrix", data = matrix(rnorm(100), 10, 10))
X <- hdf5_matrix(tmp, "data/matrix")

print(X)
X   # same as print(X)

X$close()
unlink(tmp)



BigDataStatMeth documentation built on May 15, 2026, 1:07 a.m.