## Instance creation
Binmat( files, nrow, ncol, offsets = 0, extents = rep(nrow, ncol), datatype = c("16-bit integer", "32-bit integer", "64-bit integer", "32-bit float", "64-bit float"), dimnames = NULL, ...)
## Additional methods documented below
NULL
.files
:factor
giving the full file paths of the binary files storing the matrix (or matrices) on disk. Length must be equal to the number of columns.offsets
:numeric
vector giving the positions of the first value of each column in number of bytes from the beginning of the file.extents
:numeric
vector giving the length of each column.datatype
:factor
vector giving the binary data types of each element of the matrix (or matrices) on disk. Length must be equal to the number of columns.dim
:dimnames
:list
analogous to the 'dimnames' attribute of an ordinary R matrix..__classVersion__
:Versions
object describing the version of the class used to created the instance. Intended for developer use.Versioned
Binmat
instances are usually created through Binmat()
.dim(x), dim(x) <- value
:dimnames(x), dimnames(x) <- value
:colnames(x), colnames(x) <- value
:rownames(x), rownames(x) <- value
:ncol
:nrow
:cbind
:rbind
:Binmat[i, j, ..., drop]
:matrix
,
Hashmat
,
SImageSet
## Not run:
# ## Create an Binmat object
# Binmat("path/to/file.extension")
# ## End(Not run)
Run the code above in your browser using DataLab