getData: Get data from an 'h5array' object

Description Usage Arguments Value Author(s) See Also Examples

Description

This is the basic accessor function, can be used interchangeably with the "["-operator.

Usage

1

Arguments

x

An h5array object

...

Subsetting indices for the dimensions of the array, there should be exactly length(dim(x)) parameters given here.

Value

The array containign the specified data loaded from the HDF5 file.

Author(s)

Paul Theodor Pyl

See Also

link{getFileName} link{getLocation}

Examples

1
2
3
4
5
6
x <- h5arrayCreate(
      tempfile(),
      "SomeData", c(10,10), "double",
      fillValue = 42)
x
getData(x, 1:3, 4:6)

PaulPyl/h5array documentation built on May 8, 2019, 12:57 a.m.