The DataSpace class used to select data elements from DataSet
objects. DataSpace objects can be generated using the S4--method
selectDataSpace
from DataSets objects in 3 ways:
# S4 method for DataSpace
h5close(.Object)selectDataSpace(.Object, offset = rep(NA_integer_, length(.Object@dim)),
count = rep(NA_integer_, length(.Object@dim)), elem)
# S4 method for DataSet,missing,missing,missing
selectDataSpace(.Object)
# S4 method for DataSet,ANY,ANY,missing
selectDataSpace(.Object, offset, count)
# S4 method for DataSet,missing,missing,matrix
selectDataSpace(.Object, elem)
DataSet; S4 object of class DataSet
(DataSpace
for h5close
).
numeric; Offset to be selected from Hyperslab.
numeric; Count to be selected from Hyperslab.
matrix; Matrix specifying element selection coordinates. Columns specify rank, rows specify different points.
additional arguments passed to c
.